Tagged Questions

GQL is a SQL-like language for retrieving entities or keys from the Google App Engine datastore.

learn more… | top users | synonyms

40
votes
9answers
10k views

Google App Engine: Is it possible to do a Gql LIKE query?

Simple one really. In SQL, if I want to search a text field for a couple of characters, I can do: SELECT blah FROM blah WHERE blah LIKE '%text%' The documentation for App Engine makes no mention ...
17
votes
3answers
5k views

How do I query in GQL using the entity key

How do I write a query against the entity key using GQL in the Google App Engine Data Viewer ? In the viewer, the first column (Id/Name) displays as name=_1, in the detail view it shows the key as ...
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
6answers
2k views

What's your experience developing on Google App Engine?

Is GQL easy to learn for someone who knows SQL? How is Django/Python? Does App Engine really make scaling easy? Is there any built-in protection against "GQL Injections"? And so on... I'd love to ...
7
votes
2answers
956 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
2answers
344 views

Minimize subqueries with IN queries on AppEngine (python)

Is there any clever way to avoid making a costly query with an IN clause in cases like the following one? I'm using Google App Engine to build a Facebook application and at some point I (obviously) ...
6
votes
2answers
436 views

Google app engine and paging

How would one go about writing a query that selects items 2000-2010 out of a collection of 10000 objects in the data store. I know that it can be done like this in GQL: select * from MyObject limit ...
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 ...
6
votes
6answers
3k views

Querying for N random records on Appengine datastore

I'm trying to write a GQL query that returns N random records of a specific kind. My current implementation works but requires N calls to the datastore. I'd like to make it 1 call to the datastore if ...
6
votes
6answers
5k views

Google App Engine: Intro to their Data Store API for people with SQL Background?

Does anyone have any good information aside from the Google App Engine docs provided by Google that gives a good overview for people with MS SQL background to porting their knowledge and using Google ...
5
votes
1answer
66 views

Is there a way to set all db queries to only retrieve a given user's entries, or would each query throughout the app have to include “AND user…”?

I created an app that lets users input products and compare them. I am at the point where i need to consider scaling and multiple users, and I want to only show users the items that they've created ...
5
votes
2answers
657 views

How to store and search GeoData in AppEngine?

In my application, I want to store geographical data (longitude and latitude). Then I want to ask "which place is in this region". SQL-like query can't be used, since "Inequality Filters Are Allowed ...
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 ...
4
votes
1answer
681 views

GQL query with numeric id in datastore viewer

I want to build GQL query to get an object using its numeric id. I'm doing this in Datastore viewer in App management console, so I can't use Model.get_by_id(numeric_id). Something like SELECT * FROM ...
4
votes
2answers
894 views

Google app engine How to count SUM from datestore?

Hey, Im wondering, how can i get a SUM of a rating entity i get from the datastore (python)? should i: ratingsum = 0 for rating in ratings: ratingsum + rating print ratingsum ?
4
votes
3answers
411 views

AppEngine: Query datastore for columns with a hyphen in its name

I'm working on a servlet in Google App Engine. This servlet retrieves the data from the GAE's datastore; everything works fine when querying like "SELECT * FROM...". But when I want to filter it by a ...
4
votes
2answers
3k views

Build a GQL query (for Google App Engine) that has a condition on ReferenceProperty

Say I have the following model: class Schedule(db.Model): tripCode = db.StringProperty(required=True) station = db.ReferenceProperty(Station, required=True) arrivalTime = ...
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
245 views

Using Python list to query Google App Engine datastore

I have created a form in my Google App Engine application for users to select items from a list, the specific details of which (ex. name, other properties) will then be pulled from a datastore table ...
3
votes
2answers
235 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 ...
3
votes
1answer
186 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
339 views

Finding the maximum value in a column using GQL

How do I find the maximum value in a particular column of a table in the GAE datastore using GQL?
3
votes
1answer
199 views

Need to order by properties in the reference property, any good solution?

Say I have 2 kind: class Account(db.Model): name = db.StringProperty() create_time = db.DataTimeProperty() last_login = db.DateTimeProperty() last_update = db.DataTimeProperty() class ...
3
votes
1answer
703 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
1k views

App Engine Datastore IN Operator - how to use?

Reading: http://code.google.com/appengine/docs/python/datastore/gqlreference.html I want to use: := IN but am unsure how to make it work. Let's assume the following class User(db.Model): ...
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
1answer
731 views

On Google App Engine, how would I look up the latest order for a customer in GQL?

If I have two tables, Customers and Orders, and I want to look up the latest order for a customer, how would I do this on Google App Engine using GQL? Normally, I would join these two tables through ...
3
votes
3answers
3k views

Python: DISTINCT on GQuery result set (GQL, GAE)

Imagine you got an entity in the Google App Engine datastore, storing links for anonymous users. You would like to perform the following SQL query, which is not supported: SELECT DISTINCT user_hash ...
2
votes
1answer
102 views

GQL Query with __key__ in List of KEYs

In the GQL reference, it is encouraged to use the IN keyword with a list of values, and to construct a Key from hand the GQL query SELECT * FROM MyModel WHERE __key__ = KEY('MyModel', 'my_model_key') ...
2
votes
1answer
77 views

GQL Query Object Memory Leak

I have a long running background process that parses a few hundred thousand lines of a CSV. I noticed that the process has a memory leak that occasionally causes the task to hit its soft memory limit ...
2
votes
1answer
76 views

App Engine - GQL invalid query string

I don't know what can be wrong here: SELECT * FROM RGUser     WHERE isGuest = FALSE AND created < DATE('2011-09-01')     ORDER BY created screenshot ...
2
votes
1answer
129 views

GQL + Join Table Query Replacement for Google App Engine Datastore

Given the following Many to Many Relationship designed in Google App Engine Datastore: User PK: UserID Name Company PK: CompanyID Name CompanyReview CK CompanyID CK UserID ReviewContent For ...
2
votes
2answers
93 views

Google App Engine: efficient large deletes (about 90000/day)

I have an application that has only one Model with two StringProperties. The initial number of entities is around 100 million (I will upload those with the bulk loader). Every 24 hours I must remove ...
2
votes
2answers
137 views

how to understand “cursor” correctly

I'm trying to apply cursor to my app, however, the document is not clear enough for me. Google's description for cursor ...
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
63 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
68 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 ...
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
2answers
201 views

gql query returns BadQueryError: Parse Error

This is my gql code: data = db.GqlQuery("SELECT * FROM Playlist " + "WHERE tags = :1" + "ORDER BY :2", tag, order) and I get this error: BadQueryError: Parse Error: Expected no additional symbols ...
2
votes
3answers
1k views

App Engine Datastore Viewer, how to show count of records using GQL?

I would think this would be easy for an SQL-alike! What I want is the GQL equivalent of: select count(*) from foo; and to get back an answer something similar to: 1972 records. And I want to do ...
2
votes
1answer
198 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): ... ...
2
votes
1answer
155 views

Using entity key to retrieve entries from datastore

My Datastore contains: an entry with an id/Name id = 30001 I tried: SELECT * FROM Skill WHERE Id=30001 and a few other variations. How can i use the entity key to retrieve entries?
2
votes
1answer
256 views

GQL Random Record [closed]

Possible Duplicate: Fetching a random record from the Google App Engine Datastore? How can I efficiently pick a random database record using GQL? Eg. I have a Quotes Model and I need to ...
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
3answers
893 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
245 views

Google App Engine: Model integrity constraints?

I have a datastore model representing items in an ecommerce site: class Item(db.Model): CSIN = db.IntegerProperty() name = db.StringProperty() price = db.IntegerProperty() quantity = ...
2
votes
1answer
682 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 ...
2
votes
0answers
1k views

GQL query with “like” operator [closed]

Possible Duplicate: Google App Engine: Is it possible to do a Gql LIKE query? In SQL (T-SQL at least) you can write a query that uses the "like" operator, something like this: select * from ...
2
votes
4answers
703 views

iPhone app with Goole App Engine

I've prototyped an iPhone app that uses (internally) sqLite as its data base. The intent was to ultimately have it communicate with a server via PHP, which would use mySQL as the backend database. ...

1 2 3 4