Jody Grassel
Jody Grassel
Encountered the following conversion failure while testing with Oracle DB (passed on Derby): ``` jakarta.persistence.PersistenceException: Exception [EclipseLink-3002] (Eclipse Persistence Services - 4.0.0.v202206101604): org.eclipse.persistence.exceptions.ConversionException Exception Description: The object [07-JUN-22], of class...
With Oracle (Derby is fine), the following code: ``` // Verify EXTRACT(YEAR) from a LocalDate field q = em.createQuery("SELECT EXTRACT(YEAR FROM qdte.localDateData) FROM QueryDateTimeEntity qdte WHERE qdte.id = 1"); result...
Observed the following error while running my test bucket with DB2: ``` jakarta.persistence.PersistenceException: Exception [EclipseLink-3002] (Eclipse Persistence Services - 4.0.0.v202207051234): org.eclipse.persistence.exceptions.ConversionException Exception Description: The object [2022-06-07-12.00.00.000000000000], of class [class java.lang.String],...
Updated to today's version of master (July 5 ee55e109), and encountering the following error when running with Oracle: ``` jakarta.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 4.0.0.v202207051234): org.eclipse.persistence.exceptions.DatabaseException Internal Exception:...
I've been made aware that Valhalla, an upcoming technology to be added to Java, is going to introduce language breaking changes (https://openjdk.java.net/jeps/390 and https://openjdk.java.net/jeps/169). One example in Eclipselink code is...
I wanted to open a discussion regarding Moxy. It's part of the Eclipselink project, but it seems strange for a JPA provider implementation project to also contain a JAXB provider...
There are a lot of properties (see org.eclipse.persistence.config.PersistenceUnitProperties) which used to have "javax.persistence" properties, but are now "jakarta.persistence" properties (which is absolutely needed for the big bang transition), such as...
We should consider adding `jakarta.json.JsonValue` as a persistent capable type. As JSON is nothing more than formatted text, it easily maps to VARCHAR. This reduces the necessity for application developers...
Various database implementations have added support for spatial awareness [1], both in data types as well as the ability to execute queries that can consider spatial comparisons (location, distances between...
During the discussions for #319 I had thrown out the idea of application provided id generators. While an application can always simply assign an id value to any new entity...