Friday, March 12, 2010 13:03

Posts Tagged ‘Hibernate’

Hibernate Study Note

Monday, January 5, 2009 13:16

This is my study note about hibernate, which is written around two years ago. Hibernate =========================================================== Books: Java Persistence with Hibernate Database Manipulation ----------------------------------------------------------- Process of retrieveing objects * Search in the Session Cache. * Search in the "NonExists" record * Search in the sessionFactory Cache if it could. * Select SQL, (add the infomation in the "NonExists" record if object ...

This was posted under category: Team  |  Read Full Story  |  0 Comments

Classic hibernate operation method

Wednesday, December 17, 2008 8:13

HQL http://www.hibernate.org/hib_docs/nhibernate/html/queryhql.html BaseDAO http://www.koders.com/java/fid79A3087E1148CE1F7E44FB92DA3E1D6BD8B62DC8.aspx?s=hibernate#L1 CoolSample http://svn.apache.org/repos/asf/roller/branches/roller_3.0/src/org/apache/roller/business/hibernate/HibernateRefererManagerImpl.java http://www.koders.com/java/fidA60C168CC1294821210D40681702FC0489E526BC.aspx?s=hibernate#L16 http://www.koders.com/java/fidAE88092715E8DA77024EA1DBFAD9FE19CAC2DA21.aspx FYI

This was posted under category: Team  |  Read Full Story  |  0 Comments

Mapping Oracle Long and Clob Type in Hibernate

Wednesday, December 17, 2008 8:07

Hi All, It is interesting. ...

This was posted under category: Team  |  Read Full Story  |  0 Comments

Hibernate lost timezone when getting timestamp from Oracle

Wednesday, November 12, 2008 16:11

These two days, I was working on getting timezone information from oracle using Hibernate. The version of Hibernate is 3.2.4. I found that the return value always returned a Calendar with the tomcat server's timezone when we were getting a Calendar field. My environment: a column with data type ...

This was posted under category: Team  |  Read Full Story  |  0 Comments