0
votes
1answer
34 views
gqlQuery returns object, want list of keys
Is there a way to convert the GqlQuery object to an array of keys, or is there a way to force the query to return an array of keys? For example:
items = db.GqlQuery("SELECT __ke …
0
votes
1answer
21 views
App Engine: Filter for Choosing Entities with a Specific Item Present in their ListProperties
I need to filter entities based on one of their ListProperties having a certain element present. So kind of like:
entities.filter('listProp IN ',element) except where listProp an …
0
votes
1answer
53 views
Query/GqlQuery .order() restricting the result set?
I just noticed a strange result from a query that I have trouble understanding. It appears as if adding an order() to a Query is limiting the results I get back.
Here is my intera …
0
votes
3answers
27 views
Unable to get results when passing a string via parameter substitution in gql query
Hi,
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') #retr …
0
votes
1answer
33 views
module to abstract limitations of GQL
Hello,
I am after a Python module for Google App Engine that abstracts away limitations of the GQL.
Specifically I want to store big files (> 1MB) and retrieve all records for a …
0
votes
2answers
43 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 su …
-1
votes
0answers
55 views
How do you map friends in social networking using AppEngine Datastore and Object-Oriented Database?
Many-to-many relationships aren't quite optimal (or are they?). Using Spring Framework, BTW.
0
votes
4answers
118 views
App Engine GQL: querying a date range
What would be the App Engine equivalent of this Django statement?
return Post.objects.get(created_at__year=bits[0],
created_at__month=bits[1],
created_at__day=bits …
6
votes
5answers
1k views
Google App Engine: Is it possible to do a Gql LIKE query?
Hi,
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 E …
2
votes
4answers
327 views
Querying for N random records on Appengine datastore
Hi all,
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 i …
2
votes
2answers
352 views
What is a good pattern for inexact queries in the Google App Engine Datastore?
The Google App Engine Datastore querying language (gql) does not offer inexact operators like "LIKE" or even case insensitivity. One can get around the case sensitive issue by sto …
0
votes
2answers
49 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 y …
3
votes
5answers
1k views
Google App Engine: Intro to their Data Store API for people with SQL Background?
Hi All,
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 thei …
1
vote
3answers
66 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 …
0
votes
3answers
145 views
Build a GQL with “IN’ query for ReferenceProperty
class Message(db.Model):
user = db.ReferenceProperty(User, required=True, collection_name='Message_set')
text = db.TextProperty(required=True)
I tried this but I'm getting Bad …
