The following code is throwing exception because string field has the SQL reserved word "by" in it. How would I escape this reserved word. The code is meant for google datastore.

String field="Hosted by me"
PersistenceManager pm=PMF.get().getPersistenceManager();
    try{
    Query query=pm.newQuery("select from "+SomeObject.class.getName()
            +" where mField=='"+field+"'");
    _logger.info(query.toString());
    SomeObject=query.execute();
    }finally{
        pm.close();
    }

Here is the exception: : org.datanucleus.exceptions.NucleusUserException: Query contains a JDOQL keyword ("by") that is out of order. Keywords can only be used in a defined order.

link|improve this question

Your column name is "Hosted by me"? I would put underscore separators between the words. – I82Much Oct 15 '11 at 21:42
1  
@I82Much, the field's value is "Hosted by me". – Dilum Ranatunga Oct 15 '11 at 22:14
Ah thank you, misunderstood the question – I82Much Oct 16 '11 at 16:03
feedback

1 Answer

up vote 1 down vote accepted

Try this:

PersistenceManager pm = ...;
try {
  Query quer = pm.newQuery("select from " + SomeObject.class.getName()
                          " where mField == mFieldParam" +
                          " parameters String mFieldParam");
  List<SomeObject> results = (List<SomeObject>) query.execute("Hosted by me");
} finally {
  ...
}
link|improve this answer
Dilum Thanks! I won't be able to figure it out even if I read the javadoc db.apache.org/jdo/api20/apidocs/javax/jdo/…) . I would appreciate if you can give me pointers on where I can go read a bit more of this usage explained in human terms. – Theo W Htet Oct 16 '11 at 0:01
Yes, the apache docs are quite poor. The javadocs are atrocious. Look at Google's own docs with GAE. Start wih this: code.google.com/appengine/docs/java/datastore/jdo/queries.html – Dilum Ranatunga Oct 16 '11 at 7:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.