postgresql « Eclipse « JPA Q&A





1. JPA and PostgreSQL    stackoverflow.com

I'm on a project that uses the EclipseLink implementation of JPA to talk to a PostgreSQL database. I have a task for which PostgreSQL NOTIFY/LISTEN seems like a perfect fit. ...

2. quoting problem with JPA2 (EclipseLink) and PostgreSQL    stackoverflow.com

With PostgreSQL, I have to double-quote all identifiers or they'll be implicitly lower-cased. I'd prefer to preserve case since "lastLoginAttemptIpAddress" is so much more readable than "lastloginattemptipaddress". I have created an orm.xml ...

3. Eclipse Helios Java EE with Postgres 9.0    stackoverflow.com

I am trying to crack out some simple examples with Eclipse Helios Java EE and Postgres 9.0. When I try to configure JPA data source with Postgres 9.0. The data source ...

4. JodaTime with JPA, PostgreSQL and NULL values    stackoverflow.com

I'm trying to persists JodaTime DateTime fields with JPA to PostgreSQL but run into troubles with null pointers to database NULL values. I'm working with the NetBeans 7 beta 2 IDE. The ...

5. Getting nearly double the length when reading byte[] from postgres with jpa    stackoverflow.com

I have an Image class that has a byte[] to contain the actual image data. I'm able to upload and insert the image just fine in my webapp. When ...

7. handle PK flds in PostGreSQL differently with eclipse tool    forum.hibernate.org

import org.hibernate.cfg.reveng.* ; import java.util.Properties; public class SerialForPostgres extends DelegatingReverseEngineeringStrategy { public SerialForPostgres(ReverseEngineeringStrategy delegate) { super(delegate); } public Properties getTableIdentifierProperties(TableIdentifier ti) { Properties prop = new Properties(); return null; } ...