In Google App Engine, GQL(an SQL-like query mechanism foe datastore) is available only for Python Projects and not for java projects. Why is it so?
Also it there anyway to overcome this and use GQL in java projects also?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
GQL isn’t in the Java implementation and as a replacement you would use the
Queryobject to build datastore queries.If you’re looking for a GQL implementation for Java, gql4j works well enough. I tested it out on a small data set to make sure it works but I haven’t used it in a project otherwise.
http://code.google.com/p/gql4j/