-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: 3.1 RC2 -> Final Release and Informix Dialect
PostPosted: Wed Dec 14, 2005 11:29 pm 
Expert
Expert

Joined: Mon Jul 04, 2005 5:19 pm
Posts: 720
Hibernate version:

This involved moving a project from H RC2 & HA beta 6 to H 3.1 final and HA beta 7

Name and version of the database you are using:

Code:
INFO  org.hibernate.cfg.SettingsFactory - RDBMS: Informix Dynamic Server, version: 9.40.UC3
INFO  org.hibernate.cfg.SettingsFactory - JDBC driver: Informix JDBC Driver for Informix Dynamic Server, version: 2.21.JC2


Differences in generated SQL (show_sql=true):

Note where the SELECTs on systables are.

Code:
INFO  gov.blm.ak.arims.PhaseListenerImpl -  BEFORE INVOKE_APPLICATION(5)
INFO  gov.blm.ak.hibernate3.AuditInterceptor -  setting addUserId for a gov.blm.ak.arims.model.Reach@afe2b5
INFO  gov.blm.ak.hibernate3.AuditInterceptor -  setting addDate for a gov.blm.ak.arims.model.Reach@afe2b5
Hibernate: /* insert gov.blm.ak.arims.model.Reach */ insert into reach (reach_comment_txt, shape, length_meas, add_user_id, add_date, slope_id, waterbdy_id, val
botshp_id, valbotasp_id, rosgen_id, flow_type_id, reach_no, objectid, dn_indx_no, up_indx_no, up_lat_meas, up_long_meas, dn_lat_meas, dn_long_meas, gps_map_cd,
gps_up_lat_no, gps_up_long_no, gps_dn_lat_no, gps_dn_long_no, gps_datum_txt, length_cd, slope_pct, sinuosity_meas, sinuosity_cd, valbotslp_pct, valbotslp_cd, av
gbotwdt_meas, avgbotwdt_cd, left_ss_pct, right_ss_pct, entrench_meas, entrench_cd, w_d_ratio_meas, w_d_ratio_cd, botss_cd, hi_str_ord_no, lo_str_ord_no) values
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Hibernate: select dbinfo('sqlca.sqlerrd1') from systables where tabid=1
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I01
WARN  org.hibernate.util.JDBCExceptionReporter - Database has transactions
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I04
WARN  org.hibernate.util.JDBCExceptionReporter - Database selected
INFO  gov.blm.ak.arims.PhaseListenerImpl -  AFTER INVOKE_APPLICATION(5)


Code:
INFO  gov.blm.ak.arims.PhaseListenerImpl -  BEFORE INVOKE_APPLICATION(5)
INFO  gov.blm.ak.hibernate3.AuditInterceptor -  setting addUserId for a gov.blm.ak.arims.model.Reach@16a4b3a
INFO  gov.blm.ak.hibernate3.AuditInterceptor -  setting addDate for a gov.blm.ak.arims.model.Reach@16a4b3a
Hibernate: /* insert gov.blm.ak.arims.model.Reach */ insert into reach (reach_comment_txt, shape, length_meas, add_user_id, add_date, slope_id, waterbdy_id, val
botshp_id, valbotasp_id, rosgen_id, flow_type_id, reach_no, objectid, dn_indx_no, up_indx_no, up_lat_meas, up_long_meas, dn_lat_meas, dn_long_meas, gps_map_cd,
gps_up_lat_no, gps_up_long_no, gps_dn_lat_no, gps_dn_long_no, gps_datum_txt, length_cd, slope_pct, sinuosity_meas, sinuosity_cd, valbotslp_pct, valbotslp_cd, av
gbotwdt_meas, avgbotwdt_cd, left_ss_pct, right_ss_pct, entrench_meas, entrench_cd, w_d_ratio_meas, w_d_ratio_cd, botss_cd, hi_str_ord_no, lo_str_ord_no) values
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I01
WARN  org.hibernate.util.JDBCExceptionReporter - Database has transactions
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I04
WARN  org.hibernate.util.JDBCExceptionReporter - Database selected
Hibernate: select dbinfo('sqlca.sqlerrd1') from systables where tabid=1
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I01
WARN  org.hibernate.util.JDBCExceptionReporter - Database has transactions
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I04
WARN  org.hibernate.util.JDBCExceptionReporter - Database selected
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I01
WARN  org.hibernate.util.JDBCExceptionReporter - Database has transactions
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I04
WARN  org.hibernate.util.JDBCExceptionReporter - Database selected
INFO  gov.blm.ak.arims.PhaseListenerImpl -  AFTER INVOKE_APPLICATION(5)


Have there been any changes lately as to when or how the return value of Dialect.getIdentitySelectString is executed?


Top
 Profile  
 
 Post subject:
PostPosted: Wed Dec 14, 2005 11:44 pm 
Expert
Expert

Joined: Mon Jul 04, 2005 5:19 pm
Posts: 720
Code:
log.info("This is the Problem");
dao.makePersistent(unit);
getTransaction().commit();
log.info("The ID = " + unit.getId());


Code:
INFO  gov.blm.ak.crud.GenericCrudBacker - This is the Problem
INFO  gov.blm.ak.hibernate3.AuditInterceptor -  setting addUserId for a gov.blm.ak.arims.model.Reach@11b5077
INFO  gov.blm.ak.hibernate3.AuditInterceptor -  setting addDate for a gov.blm.ak.arims.model.Reach@11b5077
Hibernate: /* insert gov.blm.ak.arims.model.Reach */ insert into reach (reach_comment_txt, shape, length_meas, add_user_id, add_date, slope_id, waterbdy_id, val
botshp_id, valbotasp_id, rosgen_id, flow_type_id, reach_no, objectid, dn_indx_no, up_indx_no, up_lat_meas, up_long_meas, dn_lat_meas, dn_long_meas, gps_map_cd,
gps_up_lat_no, gps_up_long_no, gps_dn_lat_no, gps_dn_long_no, gps_datum_txt, length_cd, slope_pct, sinuosity_meas, sinuosity_cd, valbotslp_pct, valbotslp_cd, av
gbotwdt_meas, avgbotwdt_cd, left_ss_pct, right_ss_pct, entrench_meas, entrench_cd, w_d_ratio_meas, w_d_ratio_cd, botss_cd, hi_str_ord_no, lo_str_ord_no) values
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I01
WARN  org.hibernate.util.JDBCExceptionReporter - Database has transactions
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I04
WARN  org.hibernate.util.JDBCExceptionReporter - Database selected
Hibernate: select dbinfo('sqlca.sqlerrd1') from systables where tabid=1
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I01
WARN  org.hibernate.util.JDBCExceptionReporter - Database has transactions
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I04
WARN  org.hibernate.util.JDBCExceptionReporter - Database selected
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I01
WARN  org.hibernate.util.JDBCExceptionReporter - Database has transactions
WARN  org.hibernate.util.JDBCExceptionReporter - SQL Warning: 0, SQLState: 01I04
WARN  org.hibernate.util.JDBCExceptionReporter - Database selected
INFO  gov.blm.ak.crud.GenericCrudBacker - The ID = 0


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 15, 2005 4:50 pm 
Expert
Expert

Joined: Mon Jul 04, 2005 5:19 pm
Posts: 720
Using DEBUG output, H 3.1 appears to aggressivly release the connection immediately after the insert. Because the select on systTables occurs in a different connection, it of course will not return the last generated id for the last connection. RC2 DEBUG output did indicate this.

I solved this using the following in hibernate.cfg.xml .

Code:
<property name="hibernate.connection.release_mode">on_close</property>


However this is what the documentaion says is the default. Has the default changed?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.