Hello,
I have an application that uses some hibernate and JPA to get data(small majority) and then the rest is just using a JDBC connection to the database. The Testing Database is Postgresql 9.0, Production Database is Postgresql 8.4. What happens is the data that is retrieved from the database using hibernate and the entities created does not display when you are using the testing PG 9.0 database, but does with the PG 8.4 database.
I upgraded Hibernate to 3.6.2 today, and upgraded the PG jdbc driver to postgresql-9.0-801.jdbc3.jar today.
Upon getting all my libraries in place so I could start the application again I am still left in the same situation where I can see all data retrieved via the jdbc driver, but not with hibernate. The data that is saved via hibernate does save to the db though.
Anyone have any ideas as to where I should start on this problem. I am lost because I am not getting any errors indicating what is going wrong. If I use the netbeans debugger and set some breakpoints I get no errors, but just get 0 results returned.
Thank you.
Grant
|