Tagged Questions

JDOQL is the query language of the JDO persistence API. JDOQL is designed as the Java developers way of having the power of SQL queries, yet retaining the Java object relationship that exist in their application model.

learn more… | top users | synonyms

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
453 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 = ...
3
votes
1answer
132 views

Can I do a text search against a pattern when using Google App Engine?

All examples I'm seeing show how to pull up entities matching a string exactly. Is there an equivalent to a LIKE query? Also, if it helps, I'm thinking of using the result for an auto-completing a ...
2
votes
1answer
31 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
94 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
345 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
893 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
711 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
134 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
49 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
254 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
3answers
123 views

In SQL or GQL or JDOQL, how can I query for the row that has the highest value in 2 columns (that have the lowest difference)?

Say for example I have a table: Table: Message | data | likes | dislikes | How can I efficiently find the row that has the highest number of likes and dislikes i.e. most controversial. So for the ...
1
vote
1answer
249 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
2answers
203 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
359 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
795 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
486 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
1answer
633 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 ...
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
79 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
40 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
1answer
29 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
28 views

Help understanding JDOQL query elements for CMP 1.1 finder

I'm a relative Java EE lightweight, tasked with moving an old app from OC4j 10.x (JEE 1.1) into Glassfish 3.1 (JEE 1.4). I'm attempting to understand what this deployment error means and how I should ...
0
votes
1answer
36 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
124 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
167 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
782 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
168 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
220 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
1answer
159 views

Queries with JDOQL Unique Result Set

In my GAE application I want to make a JDOQL which returns a List where every element exist at most once even in the database there are more. How can I do this?
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
54 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
28 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
2answers
436 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
383 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
153 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
147 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
233 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
118 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
176 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
109 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
1answer
286 views

Filter a date property between a begin and end Dates with JDOQL

I want to code a function to get a list of Entry objects whose date field is between a beginPeriod and endPeriod I post below a code snippet which works with a HACK. I have to substract a day from the ...
0
votes
3answers
638 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 ...
0
votes
1answer
506 views

How to fetch data by user from google datastore?

I am playing with google app engine and having a bit of trouble on JDOQL queries. The example shows how to fetch stuff from the datastore: PersistenceManager pm = PMF.get().getPersistenceManager(); ...