Tagged Questions

4
votes
1answer
1k views

Persistance JDO - How to query a property of a collection with JDOQL?

I want to build an application where a user identified by an email address can have several application accounts. Each account can have one or more users. I am trying to use the JDO Storage ...
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
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
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
2answers
212 views

Problem with JDOQL to obtain results with a “contains” request

I am using Google App Engine for a project and I need to do some queries on the database. I use the JDOQL to ask the database. In my case I want to obtain the university that contains the substring ...
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
2answers
503 views

Query by datetime in JDOQL / Java / GAE

I'm working on a GAE app. I want to query datastore and retrieve all records between startDate and endDate. Each record has a datetime field. I'm using a query similar to this (the below code is ...
1
vote
7answers
2k views

App Engine datastore does not support operator OR

I am trying to query the google datastore for something like (with pm --> persistanceManager): String filters = "( field == 'value' || field == 'anotherValue' )"; Query query = ...
0
votes
1answer
49 views

Escaping string literal “by”, sql reserved word, while creating java Query object

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 ...
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
178 views

Google App Engine Queries with JDOQL, how to just get a count?

I've used "select from X.class.getName()" to get all records of class X, but if there is a lot of records, it might take a long time to get the results. I just want a count of how many records are ...
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
101 views

What is the best way to get multiple objects using a List of Keys on Google App Engine (Java)?

I have a many-to-many relationship. Just like in the example from the documentation: Person.java private Set<Key> favoriteFoods; Food.java private Set<Key> foodFans; How do I ...
0
votes
1answer
55 views

Using the 'INTO' keyword in JDOQL with GAE

I have a persistent class, 'Meeting' that has a 'minute' and 'hour' field among others. I only need these two fields to populate a dropdown in my ui. The example I found tells me that I can create a ...
0
votes
1answer
29 views

Rounding a value in JDOQL

I've got data in the GAE data store. I want to write a JDOQL against that data that takes one of the columns and rounds the value of it. Can I do this?
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
254 views

How to delete specific record from Google Datastore (in Java)?

I have some records in datastore, I want to delete a specific record from the table. for example in SQL , we use delete * from table1 where name ="mike" what is the equivalent code in java (I m using ...
0
votes
1answer
120 views

JDOQL (datanucleus) query compiling error in GregorianCalendar field

Following query gives a NullPointerException when complie it. Query query = pm.newQuery(Festival.class); query.setFilter("this.startDate == sDate"); query.declareImports("import ...
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" ...
0
votes
3answers
640 views

GAE Datastore and security risks with JDOQL

I just started working on a project that will run on google app engine (GAE). I'm using java (wicket) with some ajax. I'm experienced with relational databases and typically use something like ...