- 浏览: 362915 次
- 性别:
- 来自: 广东珠海
最新评论
-
cuiyijing:
[size=small]马士兵 26_homework_dml ...
SQL面试题 -
utobe:
兄弟 你真的出名了,尚学堂 oracle 马士兵的视频拿你的题 ...
SQL面试题 -
tlqtangok:
没看懂,能解释一下吗?
安装Oracle后java的jvm会报错 -
a114d:
itling 写道尚学堂的demo楼上威武
hibernate 全面学习【hibernate抓取策略 】 -
wohenshuaiba:
不错,但是没写return checkimg( this ); ...
图片上传
文章列表
一<input type="checkbox" name="checkbox1"><br>
二<input type="checkbox" name="checkbox1"><br>
三<input type="checkbox" name="checkbox1"><br>
四<input type="checkbox" name="checkbox1"& ...
- 2007-03-05 09:53
- 浏览 1430
- 评论(0)
log4j:WARN No appenders could be found for logger
(org.springframework.core.CollectionFactory).
log4j:WARN Please initialize the log4j system properly.
com.huaying.dao.LoginDAO@3a1ec6
Exception in thread "main" org.springframework.jdbc.UncategorizedSQLException: Hibernate
opera ...
- 2007-03-03 13:42
- 浏览 3682
- 评论(0)
CDT
下载地址
http://www.eclipse.org/cdt/
C/C++在Eclipse平台下的开发工具.它提供的功能包括:C/C++编辑器(一些基本的功能:语法高亮显示,代码编辑等),C/C++调试器,C/C++ Launcher,剖析器,内容提示,Makefile生成器等
- 2007-03-03 10:09
- 浏览 6737
- 评论(0)
public static List getPageCommonUser(int currentPage) throws Exception {
Connection conn = null;
PreparedStatement prep = null;
ResultSet rs = null;
List result = new ArrayList();
try {
conn = DBTools.getConnection();
int rowCou ...
- 2007-03-02 16:31
- 浏览 2554
- 评论(0)
package onlyfun.caterpillar;
public interface IHello {
public void hello(String name);
}
package onlyfun.caterpillar;
public class HelloSpeaker implements IHello {
public void hello(String name) {
System.out.println("Hello, " + name);
}
}
pa ...
- 2007-03-01 11:22
- 浏览 1796
- 评论(0)
package com.spring.event;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class Admin {
public Admin(){
}
private String id = "";
public String getId() {
System.out.print(id);
return id;
}
public void setId(String id) {
this.id ...
- 2007-03-01 11:04
- 浏览 14496
- 评论(3)
举个例子:
如果有台笔记本电脑需要12V的电流,那直接接在家用的电源220V上是不行的.
那我们会想到用一种转换器能把家用的220V转到12v就可以达到目标了
这转换器的功能用code表示,既要继承家用电源的类,又要实现12V笔记本能安上的接口
总言之,适配器作为一种沟通的桥梁吧,,,呵,我的理解
code 展示
package com.javaeye.patter.adapter;
/**
* A interface
*/
public interface Shape {
public void Draw();
public void B ...
- 2007-02-28 21:18
- 浏览 1493
- 评论(0)
package com.javaeye.pattern.factory;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2002</p>
* <p>Company: The9.com</p>
* @author Jerry Shen
* @version 0.5
*/
public class Factory {
public Window Crea ...
- 2007-02-28 21:05
- 浏览 1646
- 评论(2)
ewebeditor
http://www.ewebeditor.net/
fckeditor
http://www.fckeditor.net/
tinymce
http://tinymce.moxiecode.com/index.php
- 2007-02-27 16:06
- 浏览 1284
- 评论(0)
JSP制作经验总结2007年01月15日 星期一 14:051、如何混合使用Jsp和SSI #include?
在JSP中可以使用如下方式包含纯HTML:
<!--#include file="data.inc"-->
但是如果data.inc中包含JSP CODE ,我们可以使用:
<%@include file="data.inc"%& ...
- 2007-02-27 15:34
- 浏览 1423
- 评论(0)
看例子,来这习hibernate 和spring
- 2007-02-26 15:00
- 浏览 1954
- 评论(2)
(1)hibernate警告 Could not obtain connection metadata
运行时报错如下:
2005-12-1 13:29:19 org.hibernate.connection.DriverManagerConnectionProvider configure
信息: using driver: oracle.jdbc.driver.OracleDriver at URL: jdbc:oracle:thin:@localhost:1521:icts
2005-12-1 13:29:19 org.hiberna ...
- 2007-02-26 11:06
- 浏览 2157
- 评论(1)
declare
results CLOB;
p xmlparser.Parser;
document xmldom.DOMDocument;
rootelement xmldom.DOMElement;
stockRecord xmldom.DOMElement;
fieldsSet stockmarket%rowtype;
tempelement xmldom.DOMElement;
textnode xmldom.DOMNode;
tempnode xmldom.DOMNode;
--type ref_cur is ref cursor return ...
- 2007-02-26 10:50
- 浏览 1708
- 评论(0)
-- PACKAGE OF DBMS_SQL 游标执行流程
--
-- -----------
-- | open_cursor |
-- -----------
-- |
-- |
-- v
-- -----
...
- 2007-02-26 10:47
- 浏览 1980
- 评论(0)
create or replace procedure add_to_stockmarket
(fileName IN varchar2,recordName IN varchar2)
as
document xmldom.DOMDocument;--声明文档对象模型
subelement xmldom.DOMElement;--声明元素类型
nodelistStock xmldom.DOMNodeList;
nodelistStockChild xmldom.DOMNodeList;
stock_code char(6);--stock字段
stock_name v ...
- 2007-02-26 10:45
- 浏览 2453
- 评论(0)