Tagged Questions

4
votes
1answer
463 views

JDO for Google App Engine: escaping quotes

How do I escape parameters of queries in JDO (Google App Engine)? For example, how do I make the next snippet safe, if the variable name may contain unsafe chars as single quotes (') ...
4
votes
1answer
2k views

Why am I getting a cast error in my Query using JDO on Google App Engine?

According to the Queries and Indexes doc you can go a query effectively identically (so far as I can tell) to this: PersistenceManager pm = PMF.get().getPersistenceManager(); try { Query q = ...
2
votes
1answer
35 views

JDO UnsupportedDatastoreFeatureException on Google App Engine

I am trying to use the get method for Map as described in http://db.apache.org/jdo/jdoql_methods.html on Google App Engine. My definition is as follows: public class FooInfo { ... @Persistent ...
2
votes
2answers
96 views

Appengine: DatastoreNeedIndexException when using “order by”

Hello I have this DatastoreNeedIndexException when I try to order by my query. here is the code: @PersistenceCapable public class Gaze { @PrimaryKey @Persistent(valueStrategy = ...
2
votes
2answers
359 views

What does “:P” mean in a JDO query

I am using JDO on google app engine. Each 'Employee' has a 'key'. I have a set of keys and wanted to retrieve all Employees whose key belongs to this set. So I implemented it using the 'contains()' ...
2
votes
3answers
914 views

How to do batch Google DataStore key lookup query in JDO

I have about 50k entities stored in appengine. I am able to look up an individual record via the GQL admin interface with a query like: SELECT * FROM Pet where __key__ = KEY( 'Pet','Fido') But ...
2
votes
1answer
719 views

How to retrieve a list of objects which are a property of a class with JDOQL?

I have the next persistence capable classes: @PersistenceCapable public class AppAccount { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; ...
1
vote
1answer
159 views

GAE JDO Query sometimes returns with newest persisted entities missing

I am trying to build a simple app using google app engine, with java and JDO. my application creates Sale objects and persists them to the datastore, once persisted i attempt to list using a query, ...
1
vote
1answer
50 views

Why error “Joins are only supported when all filters are 'equals' filters.”

I am not sure what am I doning wrong here? It complains "Joins are only supported when all filters are 'equals' filters." when the query is executed. How can I get around that? Query query = ...
1
vote
1answer
261 views

JDOQL (Appengine) - Query for all/one items with a list as parameter?

I'm trying to create a query so that all items of a given list (parameter) are contained in a a table's column (which is also a list). I also need a query so that at least one item of a given list ...
1
vote
1answer
257 views

JDOQL Subquery count problems

I am having trouble with subquery counts with JDOQL (using DataNucleus). The following query SELECT this.price FROM com.mysema.query.jdo.test.domain.Product WHERE (SELECT count(other) FROM ...
1
vote
1answer
370 views

Java: JDOQL startsWith query, case sensitive

I'm using the .startsWith() filter in a JDOQL query but it's case sensitive. So startsWith("ab") doesn't return "Abc" result and so on. Will I need to use a SQL query to avoid this ?
1
vote
1answer
813 views

Subqueries on Java GAE Datastore

I am trying to create a database of users with connection between users (friends list). There are 2 main tables: UserEntity (main field id) and FriendEntity with fields: - initiatorId - id of user ...
1
vote
1answer
639 views

Google Datastore problem with query on *User* type

On this question I solved the problem of querying Google Datastore to retrieve stuff by user (com.google.appengine.api.users.User) like this: User user = userService.getCurrentUser(); String ...
0
votes
0answers
24 views

How to apply fetch groups using JDOQL queries with datanucleus-appengine 2.0.0-final

After upgrading to the 2.0.0-final version of datanucleus-appengine, fetch groups now appear to be ignored when using JDOQL queries via the Query API. I'm not sure whether it's a bug in the library ...
0
votes
1answer
100 views

Why is java.lang.Long not persistable?

I am trying to query for a list of ids of type Long in GAE/JDO. And I'm getting the following exception when I call detachCopyAll() on the result set. ...
0
votes
1answer
31 views

Unable to fetch object by id in JDOQL

I am pretty naive to hbase and JDO. I was trying to use Query q = pm.newQuery(MyClass.class, "id == " + taskId); List<MyClass> taskList = (List<MyClass>)q.execute(); But to my ...
0
votes
1answer
37 views

Deleting all records from 201 to infinity in JDOQL

Working on a logging feature, I only wish to keep the last 200 records in the datastore. How can I do this in JDOQL? If I'd use SQL it would be as easy as DELETE FROM MyTable OFFSET 201 ORDER BY ...
0
votes
0answers
130 views

Self Join in JPA/Jdo GAE-J

I have an Object Area in GAE-J: public class Area implements Serializable { private Long Id; private String name; private Long parentID; public Area() { } public Area(Long ...
0
votes
1answer
820 views

How to do a Date range query using JDO on Google App Engine

Here is the code snippet I am trying to get to work: final Query query = pm.newQuery("SELECT FROM model.Strip WHERE publishOn <= startDate && endDate >= publishOn PARAMETERS Date ...
0
votes
1answer
173 views

JDO query using the object ID

I have a User object which has a collection of Transaction objects under it. I store the object ID for my User object and now need a query to sum the transactions under the User object: ...
0
votes
1answer
230 views

JDO querys with OR in GAE

Got an entity A with like this public class A private String a; private String b; .. .. .. How do I write a JDO query that select all the A objects that matches either keyword==a OR keyword ==b ...
0
votes
2answers
452 views

Why does JDOQL query using “matches” semantics only work with a literal?

I'm trying to construct a JDOQL query (using datanucleus) that will search for matches of a parent class based on criteria in an owned one-to-many child class. The query looks like this: Query ...
0
votes
1answer
400 views

How to query for an interface and filter the resultset with JDOQL?

I have an interface @PersistenceCapable public interface MyInterface { public abstract String getName(); public abstract void setName(String name); } The persistence layer uses JDO. The ...
0
votes
1answer
155 views

Declarative JDOQL vs Single-String JDOQL : performance

When querying with JDOQL is there a performance difference between using the declarative version and the Single-String version: Example from the JDOQL doc: //Declarative JDOQL : Query q = ...
0
votes
1answer
148 views

AppEngine JDO-QL : Problem with multiple AND and OR in query

I'm working with App Engine(Java/JDO) and are trying to do some querying with lists. So I have the following class: @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true") ...
0
votes
2answers
182 views

JDOQL Any way to avoid multiple .contains() calls in the query when searching for the presence of one or more elements in a member List variable?

The question pretty much says it all. If I have a class Class A public class A { ... private List<String> keys; ... } And I want to select all A instances from the DataStore that ...
0
votes
1answer
111 views

Store java.util.Calendar field into one column

How to store java.util.Calendar field into one column with Datanucleus JDO. By default it is stored into two columns (millisecs, Timezone) with following JDO metadata. field name="startDate" ...