Tagged Questions
0
votes
1answer
27 views
How to retrieve data from gae datastore with a query applying condition
Here is my problem. SInce I am using JDO, the data is saved in the datastore backend. Now I want to retrieve data with a query with a condition. For example,
public List<Query> ...
1
vote
1answer
40 views
JDO query a list using a list
I am using JDO to query my database. The entity class looks kind of like this:
class Entity
{
// other members of the class
List<String> stuff;
// members and methods
}
I am writing a ...
0
votes
0answers
44 views
How you will implement join query for JDO
You have a query say :-
select p from profiles p, group g where p.profileId = g.profileId
How will you implement it using JDO. It could be basic but I am new to JDO and was not able to goolge ...
1
vote
0answers
136 views
Using GWT and JDO, why does execute query always return null?
I have been working with GWT the last couple of months and the very last thing that I need to get to work is storing my applications data in JDO-objects with GAE instead of SQLITE.
My application ...
0
votes
1answer
288 views
Query Cursor with App Engine (Java - JDO)
I need to implement pagination in my result fetching so while looking around, I got a link to Query Cursors on the Google Developer site but the article explains the use of Query Cursors using the ...
1
vote
2answers
436 views
Substring searching of text in Google App Engine Datastore entity
I have been working on with Google App Engine. I have found problem with searching sub strings and few other operations. The javax.jdo.Query provides options to set filter as per the need. There are ...
0
votes
1answer
71 views
Can I stream query results using JDO?
I want to export all Objects (rows) in my database. They don't fit into memory at once, so I want to stream them instead of fetching all at once. Which approach has a low memory footprint? Does JDO ...
1
vote
1answer
78 views
Tricky 1-to-1 unowned relations query
I am currently developing a location based service on GAE/Java. I am quite new to this and I need your help with the JDO query part.
I have two persistent classes, Client and ClientGeolocation. The ...
0
votes
1answer
159 views
getting null pointer exception when executing query in google app engine
i am using google app engine with gwt.
i have two class question and vote when i am accessing vote by querying on question it gives me null pointer exception.
my class are as follows
Question
...
0
votes
2answers
265 views
appengine datastore query escaping single quote (')
I have used javax.jdo.Query like here JDO for Google App Engine: escaping quotes. Yet, my query string with single quote (') keep getting exploded.
Query query = pm.newQuery("select from " + ...
0
votes
1answer
347 views
How to set multiple parameters when querying in GAE with JDO in java?
I'm following the docs on this site: http://code.google.com/intl/sv-SE/appengine/docs/java/datastore/jdo/queries.html
From there I learned how to make queries but I seems only to work with one ...
0
votes
1answer
264 views
GAE JDO Empty Query Result
I'm putting together a simple GWT, GAE, JDO application. To start with, I'm attempting to store a table of Cat Records. I managed to get the RPC mechanism to work in my call to save the data (see ...
0
votes
1answer
263 views
Using JDO with HRD on Google App Engine
To get consistent queries with HRD, we are told to use ancestor queries.
i am using JDO, however i cannot find an example of an ancestor query using JDO Query.
can someone tell me if its possible, ...
0
votes
2answers
283 views
How do I query a single field in AppEngine using JDO
I've got a Product POJO that looks like.
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Product extends AbstractModel {
@Persistent
private String name;
...
0
votes
1answer
145 views
Google App Engine large IN clause query
I have an Account entity that has a facebook id.
Sometimes, the client might send all facebook ids (the clients facebook friends) to the server.
We want to select all Accounts IN the facebook ids ...
0
votes
2answers
59 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
364 views
JDO Query ordering issue
I have a JDO query which filters on two properties of a "Person" entity, lets call them "age" and "height". I wish to order the results by the Persons "score". However, due to the restrictions App ...
1
vote
3answers
276 views
Google App Engine JDO Question: Memory Consumption Of Large List In Same Fetch Group
I am creating a web application using GAE and I'm using JDO to access the datastore. For simplicity's sake here's a description of my data structure:
Book Class
public class Book
{
....
public ...
0
votes
1answer
219 views
In AppEngine (JDO), what is the difference between equality (==) of an item with list and contains() function?
For example, if I have: List A; and a String B;
What is the difference, in JDO (AppEngine), between the following two conditions in a query: B == A; and A.contains(B);?
Also, does the query in ...
0
votes
1answer
671 views
JDO query with base class gives null pointer
I am getting this error when running junit test
Testcase: testGet_User(Authentication.UserManagerTest): Caused an ERROR
null
java.lang.NullPointerException
at ...
2
votes
1answer
738 views
On GoogleEngine (Java), in JDO, how do I query a list of child objects based on the id of the parent?
I have two value objects, Calendar and Event, that are persistent. Calendar has a property that consists in a list of events, with a one to many relationship. Calendar is a parent of Events as shown ...
1
vote
1answer
411 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 ...
0
votes
1answer
186 views
With JDO, is it possible to query for all objects that implement a particular interface?
I tried using the following query:
Query q = getPersistenceManager().newQuery(
getPersistenceManager().getExtent(ICommentItem.class, false)
);
but got:
...
1
vote
1answer
398 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 ...
2
votes
2answers
2k views
On Google App Engine (GAE), how do I search on the Key/ID field?
I've got this code (Java, GAE):
// Much earlier:
playerKey = KeyFactory.keyToString(somePlayer.key);
// Then, later...
PersistenceManager pm = assassin.PMF.get().getPersistenceManager();
Key ...
0
votes
1answer
605 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 ...
3
votes
1answer
538 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()' ...
