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 ...
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 ...
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
2answers
67 views

how to make a key in Datastore based upon more than one property

how to make own unique key based upon more than one peoperties(fields) of a model(Kind) in datastore. here it is a situation i have 4 fields name,device,id,data. now i want to make a key based upon ...
0
votes
1answer
64 views

How to specify ID greater than <something> in the where clause?

Just recently tried something like the following in the appengine interactive console: from google.appengine.ext import db from django.utils import simplejson class TestDb(db.Model): author = ...
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
1answer
341 views

Querying datastore: 'NoneType' object has no attribute

When I run this if block: first_query = db.GqlQuery("SELECT * FROM Contract ORDER BY date DESC").get() if first_query == None: numBook = 42 numInitialPage = 42 ...
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 ...
3
votes
1answer
323 views

Why does this Gql Query return None? (Using Python and App Engine)

I am creating a number guessing game to help myself learn how to use Google's App Engine. I store the current answer as a random number in the datastore. Each time the user guesses I want to pull the ...
1
vote
2answers
944 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 ...
1
vote
3answers
303 views

One to Many Database Setup in Google App Engine

class Student(db.Model): teacher = db.ReferenceProperty(Teacher, collection_name='students') name = db.StringProperty(required=True) zip_code = db.IntegerProperty(required=True) ...
2
votes
3answers
866 views

How can I filter by key, or keys, a query in Python for Google App Engine?

I have a query and I can apply filters on them without any problem. This works fine: query.filter('foo =', 'bar') But what if I want to filter my query by key or a list of keys? I have them as ...
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
646 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' ...
1
vote
1answer
591 views

GQL Reference for Appengine

Anyone have a good reference guide for GQL (query language for google appengine datastore)? I find the reference guide on the google appengine site very limited with examples
0
votes
1answer
277 views

Query problem in Google app engine

I am very new to sql and more over GQL used in Google app engine. I have managed to push my data to the Google servers but I am not able to figure out a way to query from the entities I've loaded to ...