Tagged Questions
0
votes
2answers
24 views
Querying the Google App Engine Datastrore
I am trying to learn how to work with Google App Engine, I'm looking at their datastore example for querying here I have never done SQL, GQL or the like. So can someone please break down this string ...
2
votes
1answer
52 views
Birthday query in Google App Engine
I want to have a list of contact that celebrates their birthday disregarding the year, but I can't seem to disregard the year when I do gql.
The closest that I get is the code
SELECT * FROM Contact ...
0
votes
1answer
26 views
formatting GQL query
I am trying to implement this example in my app:
https://developers.google.com/appengine/docs/python/datastore/structuring_for_strong_consistency
I keep getting an error that says:
BadQueryError: ...
0
votes
1answer
41 views
How can I find entities which have an empty StringListProperty?
Given this model:
class TestModel(db.Model):
names = db.StringListProperty(required=False)
I want to find entities that have an empty names property, so I tried this:
...
1
vote
2answers
82 views
When to transition from Datastore to NDB?
From what I have heard, it is better to move to NDB from Datastore. I would be doing that eventually since I hope my website will be performance intensive. The question is when. My project is in its ...
0
votes
1answer
92 views
DATE COMPARISON in GOOGLE APP ENGINE DATASTORE / PYTHON
I am trying to fetch records after a certain date.
I used the below in code:
qstr = "SELECT * FROM Comment where date > '"+str(max_date)+"' order by date desc limit 10"
comments = ...
0
votes
1answer
35 views
GQL not working when I select a particular field
I have an entity called with columns app, id, params, view, timestamp. When I do a select * in GQL it works fine. Screenshot attached below.
However when I try to select only one column I don't ...
0
votes
2answers
60 views
How to get the last of each entity in the GAE datastore that starts with 'A', that starts with 'B', etc
I have a GAE datastore with 303 Game() entities.
class Game(db.Model):
title = db.StringProperty(required = True)
slug = db.StringProperty(required = True)
category = ...
0
votes
1answer
65 views
Forming a GQL query with != not equals
I am trying to form a GQL query that:
SELECT * FROM IvlsRun where origInstrument = 'Catalyst_Dx' and practiceId != '100004'
Finds all IvlsRun(s) where the origInstrument = 'Catalyst_Dx'... but I ...
2
votes
2answers
74 views
Get the 4 not repeated latest results on GQL (Google App Engine)
Hello I have this on my GAE application:
try:
last = RegistroDescargas.gql("order by date DESC LIMIT 4")
except:
last = None
With that I can get the last four rows of the database ...
1
vote
2answers
53 views
GQL error reports property is not indexed on dev_appserver?
Must be missing something really dumb here. This GQL query:
q_count = Questions.gql('WHERE questionnaire = :1 AND deleted = False AND required = True', q).count(1000)
generated following error:
...
0
votes
0answers
148 views
“No results in Empty namespace.”
update0 and partial answer
The following query (which elides FROM trans) produces good results, but my real goal is to find only those entities where the value of the property type is poll, and I ...
0
votes
2answers
233 views
GQL queries (GAE datastore Python): how to retrieve all entities with same tag and all entities containing a substring?
I have a bilingual dictionary database of 60000 pairs stored in GAE that's look like this:
date, tag, value
date, vis, screw
date, vis, screws
date, vis à bois, wood screw
date, vis à bout ...
0
votes
1answer
106 views
Google app engine db model static ( class ) variables
In GAP you you create a model, they show it by :
class Pet(db.Model):
name = db.StringProperty(required=True)
type = db.StringProperty(required=True)
birthdate = ...
0
votes
1answer
98 views
Simple data storing / retrieving in GQL on Google AppEngine in Python
I have a problem which probably is a result of me not understanding how GQL works (this is my first day with it). I'm working on Google AppEngine (locally now) using google.appengine.ext.db data ...
0
votes
1answer
135 views
admin console GQL query: index not found when ordering on date
My datastore-indexes.xml looks like this:
<datastore-index kind="Book" ancestor="false" source="auto">
<property name="^i" direction="asc"/>
<property name="nurInRange2" ...
0
votes
3answers
72 views
Selecting only the latest post for each url
I have an app on GAE that lets user add\edit posts to any arbitrary path (like a wiki). I am storing all the posts in a single table. The table is structured as follows:
class WikiPosts(db.Model):
...
0
votes
2answers
162 views
GQL Query Not Returning Results on StringProperty Query Test for Equality
class MyEntity(db.Model):
timestamp = db.DateTimeProperty()
title = db.StringProperty()
number = db.FloatProperty()
db.GqlQuery("SELECT * FROM MyEntity WHERE title = 'mystring' AND ...
0
votes
2answers
493 views
Check if Google App Engine datastore entity has a particular property
I am new with developing web applications with Google App Engine.
I wanted to check for entities in my datastore which have a null value set for a list property (db.ListProperty). However, when I ...
1
vote
0answers
40 views
select records from last 48 hours with GQL [duplicate]
Possible Duplicate:
How to query all entries from past 6 hours ( datetime) in GQL?
Is there any way to select a number of records from GQL that were created within the last 48 hours? This ...
1
vote
3answers
229 views
pass a string variable into a gql query
How in the world do I pass a string variable into GQL with python?? I can do it fine in SQL but it just isn't working. here is what I have:
personalposts = db.GqlQuery("select * from PersonalPost ...
0
votes
1answer
89 views
single-property GQL causes unexpected composite index
If I execute this GQL query:
GQLQuery("SELECT user FROM MyUser WHERE foo = :1", fooz)
It will cause my index.yaml to make a composite index with both the user and foo properties.
- kind: MyUser
...
2
votes
1answer
132 views
query.filter and gql
I am trying this function, however something is wrong. I stored the name "John" but when i pass the john to username_ and call the check_user the output is always return results, even if the name is ...
0
votes
2answers
125 views
HOW to sort db.ReferenceProperty property?
I have two kind like this:
class A(db.Model):
propertyA = db.XxxProperty(required=True)
class B(db.Model):
reference = db.ReferenceProperty(A,collection_name="Bs",required=True)
date = ...
3
votes
1answer
97 views
Objectify4 query a list attribute with a list condition
I have an object called Guy which has an attribute girlfriends type Key[]
Given a list of Longs which are the Girl's ids I want to query all the Guy's which have any of these girls as girlfriend.
...
0
votes
2answers
380 views
GQL SELECT Sorting
is there any easier way to select & sort by weight ?
fetchCount = 1000
date1 = datetime.datetime.utcnow().date()
entries = GqlQuery("SELECT * FROM Entry WHERE category = :category and date >= ...
0
votes
2answers
187 views
Nested entity groups in HRD datastore
I'm using nested entity groups in an HRD google app engine datastore.
A < B < C considering X < Y means that X is parent of Y
Are all C in the same entity group (A one) ?
I want to query ...
0
votes
1answer
72 views
How do I apply a filter to a google datastore collection based on a key?
I am trying to use the filter() method based on a key argument. For example:
user_id="agxkZXZ-emFiZXRhLTJyCgsSBFVzZXIYGAw"
d=datamodel.Task.all()
d.filter("user=",user_id)
results=d.fetch(1024)
...
1
vote
3answers
162 views
How can I better use filters in appengine to save me filtering by looping through a long list of entities?
the following bit of code is run regularly as a cronjob and is turning out to be very computationally expensive! The main problem is in the for loop, and I think this can be made a little more ...
0
votes
2answers
208 views
How to write a query like SQL's SELECT x FROM
I want to write a query that does something like this SQL query:
SELECT name FROM contacts WHERE blah blah
I know I can do something like this:
for contact in Contacts.gql(WHERE_CLAUSE, ...
0
votes
2answers
104 views
Use an SQL-like function with GAE's datastore
I have a property (isFull) in a model whose value depends on other properties in that same model (counter).
So far I've been setting the property's value myself whenever any of the properties it ...
0
votes
1answer
69 views
How to query specified minutes from datetime kind of gae datastore? eg: “xx:20:xx”
i have a problem using Google App Engine Datastore.
My db class:
class pm25(db.Model):
pttime=db.DateTimeProperty()
Datastore:
pttime
2011-11-01 12:00:00
2011-11-01 12:20:00
2011-11-02 ...
0
votes
1answer
420 views
Parse Error: Expected no additional symbols at symbol
username = self.request.get('username')
groupName = db.GqlQuery("SELECT group FROM Person WHERE name = :1", username).get()
I'm getting error "Parse Error: Expected no additional symbols at symbol ...
0
votes
1answer
189 views
GQL Not Recognising a ReferenceProperty in Filter
I have a datastore thats has ~850 groups and ~19,000 items. Each item may belong to only one group, I have two models in my app that represent a Group and an Item:
class Group(db.Model):
Id = ...
0
votes
1answer
563 views
GqlQuery from GoogleAppEngine returns empty list
Here is my query:
currentID = 7
deck = range(0,3)
similarIDs = db.GqlQuery('SELECT * FROM itemSet WHERE jokeID=:1 AND position IN :2', currentID, deck[:3]).fetch(100)
Here is my model:
class ...
1
vote
2answers
237 views
Querying from GAE datastore using count
At the moment I am getting the top scores for my Android application from the datastore as follows:
Query query = pm.newQuery(PlayerPersistentData.class);
query.setOrdering("rating desc");
...
0
votes
1answer
182 views
GQL datastore model for product reviews - lists of keys? or ancestors?
I'm making a product review service using Google App Engine, and I'm wondering about good practice for structuring my datastore models (I'm using the "high replication" setting, and I've gathered that ...
0
votes
0answers
152 views
app engine datastore - inequality filters on multiple different properties [duplicate]
Possible Duplicate:
how to effectively run two inequality filters on queries in app engine
Is there any way, other than making multiple queries and filtering them using server side, of ...
1
vote
2answers
943 views
GqlQuery and ID
I try to build a GqlQuery and get an entity by the specified ID, but I get the error "IndexError: The query returned fewer than 1 results".
A DataStore is not empty. At the Datastore Viewer I've found ...
2
votes
1answer
105 views
help with datastore query
Hi I am trying to list playlists wich contain songs by a given artist for which i have the keyname, my models are:
**playlist**
songs = db.ListProperty(db.Key)
**Song**
artist = ...
2
votes
1answer
84 views
How to move all attributes in a datastore with value True to another datastore?
Is there a way of moving all attributes within a model with a value set to True to another model?
I am writing in Python and have the following:
class crimechecker(webapp.RequestHandler):
def ...
0
votes
3answers
327 views
GQL: is myList.contains(myField) any faster than 30 separate myField == myList(i) queries?
I've got a list with 100 Longs in it, and an Entity kind with a Long field. I want to find all the entities whose field value is in the list.
I was thinking, "Great! I'll just write where ...
3
votes
2answers
778 views
How to retrieve entity from key value in GQL
I am using Google App Engine's datastore and wants to retrieve an entity whose key value is written as
ID/Name
id=1
Can anyone suggest me a GQL query to view that entity in datastore admin console ...
0
votes
3answers
367 views
How does the appengine datastore (java - JDO) store and return data, i.e. is it FIFO or LIFO? If its FIFO or NEITHER, how can I make it LIFO?
I was just wondering if I store some data chronologically, will it be returned back in the order of most-recent to least-recent OR least-recent to most-recent? For e.g. If I input data in the ...
2
votes
1answer
548 views
GQL: Not equal filter on a multivalued property
Tinkering a little with GAE's datastore i've found that i can't think a proper way to filter out results using the inequality filter '!=' on a multivalued property:
class Entry(db.Model):
...
...
0
votes
1answer
111 views
Find entity that matches the most criteria
I have some properties, let's say
color = blue
age = 22
name = Tom
Of a number of entities in the datastore, how can I get one that matches most of the properties? Of course I could do:
...
0
votes
1answer
355 views
GQLQuery with_cursor not working
wondering if anyone knows why using cursors with GQLQuery doesn't seem to be working properly.
I'm running the following.
query = "SELECT * FROM myTable WHERE accountId = ...
0
votes
1answer
404 views
google app engine GQL, How to do pagination with datetime with millisecond accuracy
Hi I have an issue on querying for subsecond accuracy queries from GQL.. Wondering if anyone had similar issues or workarounds.
The context to the problem is that I'm loading batches of many objects ...
0
votes
1answer
474 views
GAE by using GQL, how to use SQL's like query?
def post(self):
selector = self.request.get('search')
search = db.GqlQuery("SELECT * FROM Product WHERE productName = :selector", selector=selector)
products = search.fetch(10)
values ...
1
vote
2answers
645 views
GQL query with multiple condition on one List field
I want to get object, which listfield contains 'foo', 'bar' and 'foobar' strings. Can I do query like this
SELECT * FROM Entity WHERE listfield = 'foo' AND listfield = 'bar' AND listfiled = 'foobar'
...
