GQL is a SQL-like language for retrieving entities or keys from the Google App Engine datastore.
0
votes
2answers
20 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
3answers
36 views
GQL Queries - Retrieving specific data from query object
I'm building a database using Google Datastore. Here is my model...
class UserInfo(db.Model):
name = db.StringProperty(required = True)
password = db.StringProperty(required = True)
email = ...
0
votes
2answers
36 views
How to do UPDATE and DELETE on GAE db using python?
I have a beginner question.
I was reading the GAE reference and I only saw "SELECT" operation. I would need the counterparts of SQL's UPDATE and DELETE but all I could figure is this:
DELETE: ...
2
votes
1answer
34 views
Subselect in GQL syntax (Datastore viewer)
I have two entities: Cars (ownerId->String) and Users (userId->String), where ownerId is the foreign key representing userId.
I am trying to execute this Query, but I get "GQL syntax" at Datastore ...
0
votes
0answers
16 views
Is there a concat function in GQL?
Is there a concat function in Google Query Language?
Given table X
FName |LName
--------|------
Bob |Smith
Larry |Potts
Ask query:
Select Concat(FName, LName) from X
I would like:
...
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
0answers
36 views
Use GQL to delete database that are one week old in google app engine
Wondering if GQL could let me delete datas that are one week or older using gql, been finding work around with this, and it just seems to be a lot of hassel.
I have a database in google app engine, ...
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: ...
1
vote
1answer
71 views
How to insert timestamp into GQL DateTimeProperty()?
The objective of my cron job is to save tweets with their timestamps into Google App Engine's datastore. I haven't been able to figure out how to save the data in timestamp form (it is currently saved ...
1
vote
1answer
166 views
How can I query my datastore in google app engine with endpoints to see if two fields contain a string?
I have implemented google appengine's endpoints client api libraries into my android application (Thanks to this tutorial: http://devthots.blogspot.ca/2012/07/building-awesome-android-apps-with.html). ...
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:
...
0
votes
1answer
43 views
Using GQL to get all new results since the previous result
I'm pretty useless when it comes to queries, I'm wondering what's the correct structure for this problem.
Clients are sent data including the key of the object, they use the key to tell the server ...
1
vote
2answers
80 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
0answers
48 views
GQLQuery How to Query for “key IN arr” Where arr is Huge
I need some help formulating my data and query so that I can make a rather large query. Basically I need the following to occur:
Model1:
creator = db.ReferenceProperty(db.Key) #reference to ...
1
vote
1answer
79 views
GQL query by key in Google App Engine Admin Console
Here is an example of a record I am trying to write a GQL Admin Console query for (not Python).
Decoded entity key:
packageName: name=com.mycompany.example > userId: name=someone@gmail.com
...
0
votes
2answers
49 views
How to check if GQL object is empty
I'm trying to check if a GQL object is empty or not (in Google App Engine using Python), how should I do it?
I tried this but it didn't work:
comments = db.GqlQuery("SELECT * "
...
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 ...
2
votes
1answer
48 views
Is there any way to cancel deleting an index in Appengine?
I vacuumed some unneeded indexes from my Appengine python project but removed one that I should not have. When I try to update that index now I get an error saying "Index being deleted cannot be ...
1
vote
1answer
102 views
GQL Select (including ID) Filter by ID
I was looking for examples wherein in GQL where I can select attributes besides ID and filter by ID as well.
The pseudo code of what I want to accomplish is something like this:
myResults = ...
1
vote
0answers
42 views
Is there any prerequisite to using DISTINCT in GQL for GAE1.7.4?
I am trying to query a list of distinct properties over an ndb model from my Datastore via GQL.
My GQL query was:
SELECT DISTINCT property FROM AppUser ORDER BY property
After running this, I ...
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
64 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
1answer
99 views
Appengine datastore Row count on an entity using GQL
Is there a way to get total number of rows in a Google App Engine Datastore Table (Entity) using GQL ?
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:
...
2
votes
2answers
77 views
Add field to App Engine-hosted database
I'm currently developing a mobile application who uses a Google App Engine-hosted web service.
But i'm facing an issue. I just want to add a field in one my database's table.
App Engine doesn't use ...
4
votes
2answers
133 views
Redirect To Specific URL in Google app engine
I am working in google app engine ,
i want to redirect browser to the specific URL which is retrived from Datastore.
The model of stored URL is like,
class WebReference(db.Model):
website = ...
0
votes
0answers
146 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 ...
1
vote
0answers
32 views
GAE fetch() distinct values ordered by time
I have a model:
class MyModel(db.Model):
ts = db.DateTimeProperty(auto_now_add=True)
id_from_other_source = db.StringProperty(default='')
#some data
Now I have a list of some ids which ...
0
votes
0answers
94 views
GQL Filter query not working with variable [closed]
I am working in google app engine , i am filtering city list.
Query is working with string but not working with variable why ?
code:
qry = Candidate.all()
qry.filter('name ...
0
votes
2answers
232 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
2answers
71 views
Use GAE's GQL IN filter with more than 30 items?
The IN filter is limited to 30 items. Is it possible to override that limitation? Or is there a viable/recommended workaround?
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
130 views
Google app engine GQL query key
I do not really understand what does the key.from_path() do.
If you could explained it a little better and more concise then here.
Also, the parent parameter intrigues me .
1
vote
1answer
50 views
Count Method Throwing 500 error
I have got into strenge situation. I want to know count of Fetch based on daily, weekly, monthly and All time. In the Datastore, the count is about 2,368,348. Whenever I try to get the count either by ...
0
votes
1answer
151 views
AttributeError: 'NoneType' object has no attribute 'userName'
reqUser = friends.UserFriends.gql("where udid =:1", str(udid) ).get()
reqUserName = reqUser.userName
This is my code i want to know how to handle this error, this error comes at line 2
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
116 views
Why use PostalAddress property in Gql? [duplicate]
Possible Duplicate:
Why Email, Username, PostalCode, etc as entities in GAE Datastore
App Engine Data store has this property "PostalAddress" but what is the purpose of using it?
Here it ...
1
vote
3answers
334 views
GQL Query in AppEngine
Im working with the dataStore trying to perfom a simple query, but it doesnt work as supposed to:
class User_Machine(db.Model):
machine_id = db.IntegerProperty (required = True)
username = ...
0
votes
1answer
88 views
Is there OR operator in GQL?
I don't know if this has been asked here. I saw couple of questions on "like" operator but I'm not sure if that's I'm looking for. Sorry I'm a noob at this. But I am moving from MySQL to Google App ...
2
votes
1answer
246 views
GQL only for Python projects and not for java?
In Google App Engine, GQL(an SQL-like query mechanism foe datastore) is available only for Python Projects and not for java projects. Why is it so?
Also it there anyway to overcome this and use GQL ...
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
0answers
55 views
How to insert many entities of different kind at once - App Engine Python
Let's say I get some data from the request:
taxi = self.request.get('taxi')
address = self.request.get('txtAddress')
name = self.request.get('txtName')
age = self.request.get('age')
Then I insert a ...
1
vote
1answer
284 views
App Engine GQL Query - Sorting
Having some issues with merging two GQLQueries in GAE (python).
fp_events = db.GqlQuery("SELECT * FROM Event WHERE firstPlayer=:1", alias).fetch(mylimit)
sp_events = db.GqlQuery("SELECT * FROM ...
0
votes
2answers
61 views
Simple App Engine Query Invalid
I'm getting an 'Invalid GQL query string' with this seemingly trivial GQL query:
SELECT * FROM Event WHERE firstPlayer='glowingEthers' OR secondPlayer='glowingEthers'
It works fine when the OR ...
0
votes
2answers
91 views
templating in python with GAE using GQL
I am running python in GAE and am stuck on a few questions related to GQL queries and using templates.
When I load the homepage, it triggers this function:
class MainPage()
def get(self):
...
0
votes
2answers
161 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
490 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 ...

