Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
5k views

What's the best way to count results in GQL?

I figure one way to do a count is like this: foo = db.GqlQuery("SELECT * FROM bar WHERE baz = 'baz') my_count = foo.count() What I don't like is my count will be limited to 1000 max and my query ...
7
votes
2answers
953 views

How to implement internet high scores in Google App Engine

I want to implement internet high scores for my game. And give feedback to players which place they have (not only top100 or something like that). In normal SQL it would look like that: SELECT ...
6
votes
3answers
1k views

Case insensitive where clause in gql query for StringProperty

Using the google appengine datastore, is there a way to perform a gql query that specifies a WHERE clause on a StringProperty datatype that is case insensitive? I am not always sure what case the ...
5
votes
2answers
1k views

Does GQL support commonly available SQL Style aggregation?

What I'm looking for a simple Aggregate Functions that are widely available in versions of SQL. Simple things like Select Count(*) from table1 to the more complex. If these are available, is there ...
5
votes
1answer
2k views

Google App Engine Query (not filter) for children of an entity

Is the parent of an entity available in a Query? Given: class Factory(db.Model): """ Parent-kind """ name = db.StringProperty() class Product(db.Model): """ Child kind, use ...
3
votes
1answer
55 views

Working with columns having dot(.) in their name using GQL

I use Objectify for datastore operations in my GAE/Java application. I have used Objectify's @Embeded facility in a couple of places in my project. Objectify automatically flattens the nested objects ...
3
votes
1answer
185 views

Can a GQL query execute an order by over two or more kinds?

I have two entity kinds in my python GAE app - both with similar attributes - and I'd like to query both lists and order the result according to an attribute common to both kinds. So something along ...
3
votes
1answer
699 views

App Engine's filter vs. gql methods

I have a user in my system who has created an entity which I'd like to retrieve. I'm attempting to do this using a filter because it's supposed to be faster than a call to the gql method. However, the ...
3
votes
2answers
2k views

How to query all entries from past 6 hours ( datetime) in GQL?

I have a simple table in Google App Engine with a date field. I want to query all the rows with the date field valued between now and 6 hours ago. How do I form this query?
3
votes
5answers
2k views

Turning a GqlQuery result set into a python dictionary

Let's say I have a model like this class Foo(db.Model): id = db.StringProperty() bar = db.StringProperty() baz = db.StringProperty() And I'm going a GqlQuery like this foos = ...
2
votes
1answer
73 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 ...
2
votes
1answer
107 views

Google App Engine - Datastore - GQL Query

class ProjectCategory(db.Model): name = db.StringProperty("Category name", required = True) def __str__(self): return str(self.name) class Project(db.Model): name = ...
2
votes
2answers
101 views

Twitter-ish DB structure in Google App Engine

I'm trying to create a site which is quite similar to Twitter. Users will be able to post messages. And users will be able to 'follow' each other. On the homepage, they see the messages from the users ...
2
votes
1answer
111 views

How to extract data from two GQL classes?

I have the following 2 classes: class UsersRSS(db.Model): userId = db.IntegerProperty() fileHash = db.StringProperty() added = db.DateTimeProperty(auto_now_add=True) class ...
2
votes
1answer
184 views

DeadlineExceededError

When I try to use a query in Google App Engine's datastore like this: user = User.all().filter('name =',userName).get() I have this error: DeadlineExceededError. EDIT: This is my function: def ...
2
votes
1answer
115 views

Number of entities returned from a GQL Query

I'm new to Python and currently working on my first Google App Engine application. In my program I have an 'Inbox' database model which contains string proporties like to_user, from_user, title, ...
2
votes
2answers
326 views

gqlquery for no values in ListProperty

I have this code to find all the nodes where property branches is empty. nobranches=TreeNode.all() for tree in nobranches:  if tree.branches==[]: I wanted to find a better, more ...
2
votes
1answer
191 views

How to construct GQL to not contain a value from a set?

Is it possible to select from a google app engine db where the key of a db.Model object is not in a given list? If so, what would be the syntax? Ex of a model class: class Spam(db.Model): ...
2
votes
1answer
218 views

How can I Query only __key__ on a Google Appengine PolyModel child?

So the situation is: I want to optimize my code some for doing counting of records. So I have a parent Model class Base, a PolyModel class Entry, and a child class of Entry Article: How would I query ...
2
votes
1answer
680 views

What's the raw GQL to check a ReferenceProperty?

I have the following models: class Author(db.Model): name = db.StringProperty() class Story(db.Model): author = db.ReferenceProperty(Author) What's the raw GQL to find all Stories by a ...
1
vote
2answers
141 views

Google App Engine python, GQL, select only one column from datastore

Im trying to pull only one column from a datastore table I have a Books model with id, key, title, author, isbn and price everything = db.GqlQuery('SELECT * FROM Books') gives me everything, but say ...
1
vote
2answers
101 views

Get the Records which contains a word (Case insensitive) in Gql?

Is it possible to write a single Gql Query for retrieving the record which contains a searching string? Data store Contains following Records: addax Crest Addrest Drest Armrest admix I need to ...
1
vote
1answer
155 views

Using List in GQL Filter

How can I make a selection in GQL using a List as filter. If I have the class public class Obj{ @Persistent private Long name; } How can I get all Obj's that the name are not in a list? ...
1
vote
1answer
164 views

Google AppEngine complex WHERE condition

I want to have a condition something like start_time <= start_time_input <= end_time OR start_time <= end_time_input <= end_time OR (start_time_input <= start_time AND end_time <= ...
1
vote
2answers
222 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
176 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) ...
1
vote
2answers
400 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
431 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
1
vote
1answer
120 views

Using localtime in a where clause for GqlQuery

I'm trying to understand how I can use the local server time to quickly filter results on google appengine. It seems to me that there should be a simple way of doing this using ...
1
vote
1answer
2k views

GQL query help - How can I write a query with where clause in GQL ? I am using google appengine datastore

I have three records in a table example: *Usernames* *email* *city* Nick nick@example.com London Vikky vicky@example.com Paris Lisa ...
1
vote
2answers
268 views

Zero results in Query/GqlQuery

How do I know if the results of my query either using the Query interface or the GqlQuery interface returned zero results? Would using .get() on zero results produce an error? If yes, what's the best ...
1
vote
3answers
605 views

GAE - How Do i edit / update the datastore in python

I have this datastore model class Project(db.Model) projectname = db.StringProperty() projecturl = db.StringProperty() class Task(db.Model) project = db.ReferenceProperty(Project) taskname= ...
1
vote
3answers
2k views

Help with Google App Engine query and datetime

I use the following data: date latitude route name longitude 2009-04-11 00:50:31.640000 40.80708 White Loop 86 -77.85891 2009-04-11 00:50:27.718000 40.80708 White ...
0
votes
1answer
35 views

GAE gqlquery with variables

If i want to run a GqlQuery with a variable i've set is that possible? for example: myNumber = 4 myResult = db.GqlQuery("SELECT * from myData WHERE filter = myNumber") this results in: Parse ...
0
votes
1answer
73 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 ...
0
votes
0answers
107 views

Loop over GqlQuery Fields, App Engine, Python

I want to output all attributes and values of the following GqlQuery: benchmarks = db.GqlQuery("SELECT * FROM Benchmarks") What's the easiest way to loop over the GqlQuery and output the names and ...
0
votes
3answers
75 views

Select Objects with null values

How can I select only objects with null values in GQL. I have a object that for a new version of my software I include a LastUpdate fields, and I want to update only the oldest updated object, but ...
0
votes
1answer
78 views

Google app engine - Query only for a field

Note: this example is just representative of the problem, not a real use case I would like to know if I have a certain objects for example Car and CarCategory: Owner - name - age Car ...
0
votes
1answer
110 views

OR Condition Return Error in GQL ( Google app engine) Why?

When i use the OR condion in GQL it return error messege tht "BadQueryError: Parse Error: Expected no additional symbols at symbol OR . Why? db.GqlQuery("Select * from vendor where access='public' ...
0
votes
3answers
301 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
2answers
255 views

What to prefer in GQL; StringListProperty or ListProperty?

I am building an application with a many to many relationship; An item of entity 'Picture' can be linked to any number of Galleries ('Gallery'). And of course a Gallery can hold any number of ...
0
votes
1answer
179 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
232 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
298 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 ...
0
votes
1answer
76 views

AppEngine GqlQuery question (WHERE NOT)

I want to find all employees from a company where the telephone number is NOT empty. Now I have this: db.GqlQuery("SELECT * FROM Employee WHERE company = :company AND phone > :nophone", ...
0
votes
1answer
96 views

GqlQuery with selfreferenceproperty key

I have an entity with a selfreferencyproperty and I wanted to search with a WHERE condition on the selfref field's key. My intent is to reduce DB hits by building a list of keys, then iterating over ...
0
votes
1answer
417 views

How to filter against a StringListProperty that does not contain an item?

I have the following model of Users and I want to get all the users that like 'yellow', but don't like 'red'. class User(db.Model): name = db.StringProperty(required=True) favorite_colors = ...
0
votes
3answers
114 views

Unable to get results when passing a string via parameter substitution in gql query

I am able to properly pass a string variable to the gqlquery through parameter substitution, here's the code i've tried to use; user_name = self.request.get('username') #retrieved from UI p = ...
0
votes
1answer
250 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 ...
0
votes
2answers
547 views

gql does not work for get paramters for keys

I am trying to compare the key to filter results in gql in python but the direct comparision nor typecasting to int works. There fore I am forced to make a work around as mentioned in uncommented ...

1 2