passer1991

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 39 下一页

2013年5月19日

oracle 的字符串

摘要: --两个竖线可以把前后两个字符串连接起来select upper(substr(xm,1,1))|| lower(substr(xm,2,length(xm)-1)) from student; 阅读全文

posted @ 2013-05-19 09:11 passer1991 阅读(83) 评论(0) 推荐(0) 编辑

2013年5月18日

我的java 的实用代码

摘要: /** * 得到实体对应的表名.Annotation方式 * @param c * @return */ public static String getTableName(Class c) { Table annotation = (Table) c.getAnnotation(Table.class); String tableName=""; if(annotation==null) { tableName=c.getSimpleName(); }else { tableName=annotation.name(); ... 阅读全文

posted @ 2013-05-18 23:19 passer1991 阅读(123) 评论(0) 推荐(0) 编辑

oracle 的分页

摘要: select * from (select rownum rn , t1.* from ( select * from emp order by empno ) t1 where rownum =5 ;select * from emp where rowid in (select rid from (select rid from (select rownum rn,rid from (select rowid rid ,empno from emp) where rownum =5)) order by empno; 阅读全文

posted @ 2013-05-18 20:55 passer1991 阅读(95) 评论(0) 推荐(0) 编辑

2013年5月17日

Hibernate的createSQLQuery 查询数据库类型为char的字段时要注意

摘要: http://blog.csdn.net/linshutao/article/details/7506395 阅读全文

posted @ 2013-05-17 16:35 passer1991 阅读(114) 评论(0) 推荐(0) 编辑

2013年5月14日

为什么 我 的myeclipse调试的时候,有时鼠标放在变量上就显示变量值,有时就没有,提示不可以显示

摘要: Window->Preferences->Java->Editor->Hovers将[VariableValues]选择即可,如果第一个[CombinedHover]已经勾选,则将这个勾去掉,勾选[VariableValues]。如果还不行,就只能用ctrl+shift+i快捷键了。 阅读全文

posted @ 2013-05-14 09:54 passer1991 阅读(147) 评论(0) 推荐(0) 编辑

2013年5月13日

各种数据库对应的jar包、驱动类名和URL格式

摘要: http://www.cnblogs.com/kunpengit/archive/2011/12/13/2285933.html 阅读全文

posted @ 2013-05-13 22:15 passer1991 阅读(95) 评论(0) 推荐(0) 编辑

2013年5月9日

oracle存储过程语法

摘要: oracle存储过程语法Oracle存储过程基本语法 阅读全文

posted @ 2013-05-09 23:37 passer1991 阅读(168) 评论(2) 推荐(0) 编辑

SQLSERVER存储过程

摘要: SQLSERVER存储过程使用说明书sqlserver存储过程入门例子加讲解 阅读全文

posted @ 2013-05-09 23:36 passer1991 阅读(99) 评论(0) 推荐(0) 编辑

2013年5月8日

数据库优化

摘要: http://www.cnblogs.com/villion/archive/2009/07/23/1893765.html 阅读全文

posted @ 2013-05-08 23:17 passer1991 阅读(77) 评论(0) 推荐(0) 编辑

Extjs4 部分中文参考文档

摘要: http://wenku.baidu.com/view/4e803be2e009581b6bd9ebd5.html 阅读全文

posted @ 2013-05-08 15:05 passer1991 阅读(109) 评论(0) 推荐(0) 编辑

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 39 下一页

导航