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
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 = ...
3
votes
1answer
133 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
34 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
913 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
3answers
125 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
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
811 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
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 ...
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 = ...
1
vote
1answer
512 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();
...
0
votes
0answers
17 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
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
817 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
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
1answer
163 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
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
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
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 ...