server « Default « JPA Q&A





1. Using custom server port other than default port fails    forum.hibernate.org

kostaky, thanks for your reply. I don't think it comes from c3po, because a simple piece of code without c3p0 doesn't run either. Code: Configuration cfg = new Configuration() .addResource("Customer.hbm.xml") .setProperty("hibernate.dialect", "org.hibernate.dialect.MySQLInnoDBDialect") .setProperty("hibernate.connection.driver_class", "com.mysql.jdbc.Driver") .setProperty("hibernate.connection.url", "jdbc:mysql://192.168.10.52:3308/people") ...

2. Using default server side values for the properties.    forum.hibernate.org

...

3. Long raw as default data type on Oracle database server    forum.hibernate.org

We have a table that has more than one columns that should map to blob. The problems is that Hibernate tries to map all of this columns to 'long raw' on Oracle database server (10g) event if the server does not permit more than one column of type long raw in a table. I try to keep mapping as general as ...