AppEngine datastore query: WHERE statement

When writing AppEngine queries here is the simplest of examples:

    public List<RecipeStep> fetch(Long recipeId)
    { 
checkPersistenceManager();

String query = "SELECT FROM " + RecipeStep.class.getName() + " WHERE recipeId == " + recipeId.longValue();
List<RecipeStep> steps = null;

try
{
    steps = (List<RecipeStep>) pm.newQuery(query).execute()
} finally
{
    pm.close();
}


List<RecipeStep> returnList = new ArrayList<RecipeStep>();
for(RecipeStep step: steps)
{
    returnList.add(step);
}
return returnList;
    }





















As an Amazon Associate I earn from qualifying purchases.

No comments:

Post a Comment

Post Scriptum

The views in this article are mine and do not reflect those of my employer.
I am preparing to cancel the subscription to the e-mail newsletter that sends my articles.
Follow me on:
X.com (Twitter)
LinkedIn
Google Scholar

Popular Recent Posts

Most Popular Articles

apt quotation..