-
When creating a query with a UUID, the parameter is set as a VARCHAR instead of a UUID, and is rejected by Postgres.
Here is an example of the failing query:
```java
UUID uuid = p1.id;
List res…
-
```
> Exception [EclipseLink-28018] (Eclipse Persistence Services - 2.7.1.v20171221-bd47e8f): org.eclipse.persistence.exceptions.EntityManagerSetupException
Exception Description: Predeployment of…
-
EclipseLink is not accepting the ID(THIS) operation when supplied as an argument to another JPQL function, such as LOWER,
```
FROM Vehicle WHERE LOWER(ID(THIS)) = ?1
```
The error raised is:
…
-
1. Define classes with @OneToMany and @ManyToOne
```java
public class UserCart {
...
@NotNull
@OneToMany(mappedBy = "userCart", fetch = FetchType.LAZY)
public List products;
}
…
-
### Brief Summary
The Payara-Bom has the dependency
```
org.eclipse.persistence
org.eclipse.persistence.antlr
${eclipselink.vers…
-
EclipseLink `2.7.9/3.0.2`
Any database platform.
```
String jsql = "select c from Country c where c.name is not null and coalesce(c.iso2, :p1) != 'DE'";
TypedQuery query = em.createQuery(jsql, C…
-
Rather than modifying my `persistence.xml` file I was hoping I could just run this to enable the detailed SQL logging dynamically with this:
asadmin set-log-levels eclipselink.logging.level.sql=FINE
…
-
My current project is using EclipseLink moxy. Some code is using @XmlPath of EclipseLink moxy to define a fine mapping between Java object and xml schema.
And I also using jax-doclets to generate docs…
-
The following error occurred when we tried to define an entity with an embeddable that is a Java record, which is supposed to be allowed in Jakarta Persistence 3.2:
```
[7/18/24, 16:07:23:910 CDT]…
-
I would like to print just 'sql' and 'query' but I don't see them at all.
Properties
<property name="eclipselink.logging.logger" value="usn.eclipse.persistence.logging.SLF4JLog"/>
…