driver « Oracle « JPA Q&A





2. Oracle drivers.    forum.hibernate.org

Is anyone using the 9.2.0.1 or 9.2.0.3 Oracle drivers (JDK 1.4 version: ojdbc14.jar)? If so, does it operate correctly?? Anything to watch out for? I'm getting as far as my logon page, when the Session.find (on the username and password) doesn't return the row (even though the data *does* exist in the database). Note that this *does* work with the DataDirect ...

3. oracle driver recommendation    forum.hibernate.org

I am running 8.1.7.4.1 (where it is likely later patch is available) with the JDBC driver that was supplied with this patch level. I find the performance quite acceptable. Obviously our experiences could be different as our applications are quite different. I would recommend the installation of the (latest) patches if you running the standard distribution.

4. best Oracle Driver    forum.hibernate.org

Maybe you didn't set up the Oracle database properly. Indexes, maintaining referential integrity, etc. can have a big impact on performance. No offence, but I'd doubt myself before I suspected the JDBC driver. Do you know Oracle as well as you do MySQL? My experience is that Oracle tends to be more complex. Are you using InnoDB tables in MySQL to ...

5. Hibernate 3 + Oracle Driver 10g => problem    forum.hibernate.org

Good Day, All! Hibernate version: 3.0.5 Mapping documents: no mappings - this is only a test hibernate.properties: hibernate.dialect org.hibernate.dialect.Oracle9Dialect hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver hibernate.connection.username cesartest hibernate.connection.password cesar hibernate.connection.url jdbc:oracle:thin:@oradev:10521:D Full Code: Configuration cfg = new Configuration(); SessionFactory sf = cfg.buildSessionFactory(); //exception Full stack trace of any exception that occurs: 11:09:42,216 INFO Environment:464 - Hibernate 3.0.5 11:09:42,232 INFO Environment:482 - loaded properties from resource ...

6. ..hibernate v3 "No suitable driver" for oracle 9i    forum.hibernate.org

...i cannot execute insert in oracle 9i R2..im using hibernate v3...here is my config file: jdbc:oracle:thin@spykers:1521:eman org.hibernate.dialect.Oracle9Dialect scott tiger true org.hibernate.dialect.Oracle9Dialect ...and here the stack trace: --------------------------------- 2282 [http-8070-Processor25] WARN org.hibernate.cfg.SettingsFactory - Could ...

7. Hibernate 3.2 problem with Oracle 10g driver    forum.hibernate.org

Guys: We're using Hibernate with Oracle 10g. In our schema, we have Timestamp data types using "with time zone" and "with local time zone" modifiers. This requires Oracle to know what the session time zone is, which it seem to do via the driver. In Oracle's driver, the OracleConnection object has a setSessionTimeZone method that does this. In Hibernate 3.0.2, we ...