Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/FAQ/JPA/PostgreSQL"

< EclipseLink‎ | FAQ‎ | JPA
Line 7: Line 7:
 
* PostgreSQL seems to be more picky on parameter typing when using binding.  This can be an issue when binding <code>null</code> values in some cases.  Ensure you have the correct types set in your mappings such as setting the <code>type</code> of the mapping's <code>DatabaseField</code>.  You can also use dynamic SQL using the persistence.xml property <code>"eclipselink.jdbc.bind-parameters"="false"</code>.
 
* PostgreSQL seems to be more picky on parameter typing when using binding.  This can be an issue when binding <code>null</code> values in some cases.  Ensure you have the correct types set in your mappings such as setting the <code>type</code> of the mapping's <code>DatabaseField</code>.  You can also use dynamic SQL using the persistence.xml property <code>"eclipselink.jdbc.bind-parameters"="false"</code>.
 
* Postgres seems to abort the transaction if an error occurs, so accessing the database after a failure may not be possible until after calling <code>rollback</code>.
 
* Postgres seems to abort the transaction if an error occurs, so accessing the database after a failure may not be possible until after calling <code>rollback</code>.
 +
* Postgres does not seem to current allow setting a query timeout.

Revision as of 10:34, 13 January 2009

PostgreSQL is an open source databases using the BSD license. PostgreSQL originally evolved from the Ingres.

Most JPA and EclipseLink functionality should work with PostgreSQL.

Some common PostgresSQL issue are:

  • Native SQL meta-data returned as lower case : This means to use native SQL queries you may need to ensure your column names are specified as lower case in your mappings. You can also use the EclipseLink persistence.xml property "eclipselink.jdbc.uppercase-columns"="true", to force the meta-data columns to uppercase.
  • PostgreSQL seems to be more picky on parameter typing when using binding. This can be an issue when binding null values in some cases. Ensure you have the correct types set in your mappings such as setting the type of the mapping's DatabaseField. You can also use dynamic SQL using the persistence.xml property "eclipselink.jdbc.bind-parameters"="false".
  • Postgres seems to abort the transaction if an error occurs, so accessing the database after a failure may not be possible until after calling rollback.
  • Postgres does not seem to current allow setting a query timeout.

Back to the top