The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
32 views

Use variable to get property value

I want be able to get values from my database using a variable, the last line is what I'm trying to achieve. class Data(db.Model): property = db.StringProperty() data = Data(property = 'value') ...
0
votes
2answers
31 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
0answers
9 views

How to update a Date using Google GQL

I have Google Dates with time of 00:00:00 for Hours, min and sec. I want to update ALL THESE Dates Using a QUERY and set the HOURS to 12. What query will do? I See that there is a query using ...
0
votes
3answers
50 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 = ...
2
votes
1answer
36 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
84 views

json.dumps fails for some results of GqlQuery with ORDER BY and not others

This problem is hard to explain. I'm almost done with this massive project for school, but the last sticking point is this bizarre error. I'm using the Python API for Google App Engine. My models ...
0
votes
1answer
50 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 ...
0
votes
0answers
51 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
116 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 = ...
0
votes
1answer
73 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
56 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
69 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
66 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
99 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
125 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 ...
0
votes
1answer
80 views

Get Key in property List using GQL

I am developing a Python app using Google App Engine. I want to retrieve property list from an entity along with the key. I am using the code below recs = db.GqlQuery('select __key__,content from ...
0
votes
1answer
90 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 ...
0
votes
1answer
147 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
2answers
62 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
1answer
373 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 ...
-1
votes
1answer
162 views

How to query the last element in a database class in Gql (Google Query Language)?

I have this database in GAE: class Contract(db.Model): # I renamed "Act" as "Contract" book_number = db.IntegerProperty(required = True) initial_page = db.IntegerProperty(required = True) ...
1
vote
2answers
121 views

GqlQuery Results Only for Session?

My app, Datastore, webapp2, and form-specific "responses" are all working :) but I need the page to load without displaying previous visitor's query results. I need query results only for current ...
0
votes
1answer
301 views

Unexpected empty results of GQL Query

Surprisingly, after having done a lot of queries without problem. I've run into the first strange GQL problem. Following are the properties of a model called Feedback: content date title type ...
2
votes
1answer
92 views

How to select all rows without references from another model class in GQL?

I have class Question(db.Model): wording = db.StringProperty(required=True) class Answer(db.Model): question = db.ReferenceProperty(Question, required=True) userId = ...
2
votes
1answer
685 views

add a value to pre-existing dictionary key in python

I've been trying to add a value to a pre-existing dictionary key. The value comes from the db.Model Car with the property named price. Tried two blocks of code (below) but have been getting the ...
0
votes
3answers
403 views

How to GROUP BY in App Engine

Is there some way to GROUP BY in App Engine, via GQL or Query methods? I made some research and I've read that there isn't GROUP BY in GQL, and looks like there isn't also in Query class. If is ...
1
vote
1answer
604 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
587 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 ...
2
votes
2answers
540 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 ...
3
votes
1answer
341 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
210 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
0answers
378 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 ...
2
votes
1answer
123 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 ...
0
votes
3answers
146 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 ...
2
votes
1answer
276 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
1answer
325 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? ...
0
votes
1answer
161 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 ...
2
votes
2answers
165 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 ...
1
vote
1answer
393 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' ...
1
vote
1answer
367 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
981 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
144 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
556 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 ...
1
vote
3answers
306 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
904 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
374 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 ...
2
votes
1answer
227 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, ...
0
votes
1answer
360 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
411 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
482 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 2