I'm getting very discouraged with Apache Aries JPA. I've tried everything I
can think of to get a simple query like this to work:

Query query = em.createQuery("SELECT p FROM Patient p where p.lastname =
:lastname");
                query.setParameter("lastname", "Silver");               
                
List<Patient> patients = query.getResultList();

I've tried different property settings in my persistence.xml:

<property name="openjpa.jdbc.DBDictionary" value="postgres"/>  

and this:

<property name="openjpa.jdbc.DBDictionary"
value="postgres(SearchStringEscape=\)"/> 

and even this:

<property name="openjpa.jdbc.DBDictionary"
value="postgresRequiresSearchStringEscapeForLike=false)"/> 

Nothing works. I'm not even convinced Aries JPA even recognizes these
property settings.

In any case, I don't think this is a CXF issue at all.



--
View this message in context: 
http://cxf.547215.n5.nabble.com/FIQL-error-unterminated-quoted-string-at-or-near-tp5733495p5733548.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to