
Hibernate
文章平均质量分 61
zhx624
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
hibernate ---oracle
1.查询oracle中的number类型的字段,调用hibernate中的查询方法,会转换成BigDecimal, 2.查询oracle中的varchar2类型的字段,调用hibernate中的查询方法,会转换成String, 不用转换了,方便些 public int getPypxYxjhByXnXqPyxmid(int pyxmid, String xn, String xq){ St原创 2012-04-04 01:03:49 · 854 阅读 · 0 评论 -
No row with the given identifier exists
org.springframework.orm.hibernate3.HibernateObjectRetrievalFailureException: No row with the given identifier exists: [com.elone.pm.message.pojo.TPublicClass# ]; nested原创 2012-06-18 16:25:41 · 7602 阅读 · 0 评论 -
Hibernate 错误:Illegal attempt to associate a collection with two open sessions
转载地址:http://www.myexception.cn/program/759460.html Hibernate 异常:Illegal attempt to associate a collection with two open sessions Hibernate 异常: Illegal attempt to associate a collection with two转载 2013-05-25 15:35:02 · 1592 阅读 · 0 评论 -
ORA-24816: 在实际的 LONG 或 LOB 列之后提供了扩展的非 LONG 绑定数据
添加公告的时候,内容输入多了 会报错:ORA-24816: 在实际的 LONG 或 LOB 列之后提供了扩展的非 LONG 绑定数据 解决方法:在实际的 LONG 或 LOB 列之后提供了扩展的非 LONG 绑定数据错误,这个错误是因为在绑定参数时把数据库中字段类型为LONG的字段放置在其他字段前设置了,只要将类型为LONG的字段绑定参数时放在最后设置即可解决。 insert in原创 2013-05-29 14:37:42 · 26568 阅读 · 2 评论