Informix « Database « JPA Q&A





1. beginTransction() takes 30 mins when Informix DB is down    forum.hibernate.org

We're using hibernate in our web app, connect to IBM Informix DB. From time to time, when DB is down, it took about 30 mins for beginTransction() to throw the exception back. Our code is like this: Code: logger.trace("before beginTransaction()"); ...

2. Still having problem with Informix dialect ...    forum.hibernate.org

Hi, I am using Informix Dynamic Server for Windows Version: 9.4 with the IBM Informix JDBC Driver 2.21.JC5. Here is the XML file to map a simple class Aduana. Code:

3. net.sf.hibernate.JDBCException occured in Informix DB    forum.hibernate.org

Hi there, I am now currently working in informix DB and running in Weblogic App Server. When i try to insert Blob data in table, it always throw me the following exceptions. Notes: Weblogic Platform version 7 SP4, Informix Driver Version 2.21.JC5 Informix Server Version 9.40.TC2 Hibernate Version 2.0.3 Thank You in advance! Could not synchronize database state with session: blob_assign: ...

4. Informix 9 dialect    forum.hibernate.org

5. Informix dialect    forum.hibernate.org

Hi I have a minor compatibility issue between hibernate and Informix. The Informix dialect is using the SQL statement below, where I would prefer one without the "first ?" (but rather "first 1", for example). I see that DB2400 dialect does not try to use a parameter when generating the first, can the same not be done for Informix? (i.e. public ...

6. 3.1 RC2 -> Final Release and Informix Dialect    forum.hibernate.org

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 ...

7. HIbernate Informix Dialect issue    forum.hibernate.org

Hello, I am working with an hibernate application but trying to use an informix database instead of the mySQL one. The application uses a CLOB java.sql.type but the informix dialect in hibernate does not recognise this type. I downloaded the latest hibernate source 3.2ga and added the extra registration to the InformixDialect.java file and rebuilt hibernate. registerColumnType(Types.CLOB, "text"); This corrected the ...