I am working on a servlet in Google App Engine. This servlet retrieves data from the GAE data store; everything works fine when querying like "SELECT * FROM ...". But when I want to filter it by a specific column, it does not work, because the column name has hypen. This is similar to the following:
Query query = new Query("tableName"); query.addFilter("col-name", Query.FilterOperator.EQUAL, filterValue);
How to pass property Name with hyphen?
source share