-->
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.  [ 2 posts ] 
Author Message
 Post subject: 518 and 514 sql errors with db2
PostPosted: Fri Jan 25, 2008 3:20 pm 
Newbie

Joined: Fri Jan 25, 2008 3:14 pm
Posts: 16
We are getting -518 and -514 sql error codes using hibernate with db2.
It doesn't seem to cause any problems with execution but our DBA would like them cleared up.

I haven't been able to find anything on this so any help would be appreciated.

A 518 is

Quote:
SQLCODE = -518, ERROR: THE EXECUTE STATEMENT DOES NOT IDENTIFY A VALID PREPARED STATEMENT



A 514 is
Quote:
SQLCODE = -514, ERROR: THE CURSOR SQL_CURSN300C8 IS NOT IN A PREPARED STATE


I have tried the DB2Dialect and the DB2390Dialect but no help.


Top
 Profile  
 
 Post subject: additional info
PostPosted: Mon Jan 28, 2008 12:43 pm 
Newbie

Joined: Fri Jan 25, 2008 3:14 pm
Posts: 16
I wanted to provide some additional info.
We are using a message driven bean to which has container managed transactions.
We are looking up and using a stateless session bean with container managed transctions.
The message bean and the required bean both have "Required" level transaction level.
So I assume it will reuse the same transaction from the message bean to the stateless bean.

We are using Hibernate 3.1.3 and spring 1.2.1 DAO class

Code:
<bean id="hibernateProperties"
      class="org.springframework.beans.factory.config.PropertiesFactoryBean">
      <property name="properties">
         <props>
            <prop key="hibernate.dialect">
               org.hibernate.dialect.DB2Dialect
            </prop>
            <prop key="hibernate.connection.url">jdbc/myConnURL</prop>
            <prop key="hibernate.default_schema">DB2</prop>
            <prop key="transaction.factory_class">
               org.hibernate.transaction.CMTTransactionFactory
            </prop>
            <prop key="transaction.manager_lookup_class">
               org.hibernate.transaction.WebSphereExtendedJTATransactionLookup
            </prop>
            <prop key="transaction.auto_close_session">true</prop>
            <prop key="transaction.flush_before_completion">
               true
            </prop>
            <prop key="hibernate.show_sql">false</prop>
         </props>
      </property>
   </bean>


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.