Tagged Questions
The google-datastore tag has no wiki summary.
2
votes
3answers
41 views
Can I access Datastore entities of my other Google App Engine Applications
As we know in Google App engine, for each registered email account , we are allowed to make 10 application. Now, I need to share entities among the applications. Is this possible ? If yes, how is it ...
2
votes
2answers
77 views
Bigtable design - How to simulate efficient joins
I've got a design question regarding Google's database Bigtable. Let me explain it by using an example:
I've got Entities of the kind "Article" with the following properties:
title
userId
....
...
1
vote
0answers
35 views
on appengine datastore I am getting exception errors but the transaction worked. so what is wrong?
class registerPage(webapp2.RequestHandler):
def post(self):
deviceID = cgi.escape(self.request.get('deviceID'))
PNID = cgi.escape(self.request.get('PNID'))
try:
...
1
vote
2answers
50 views
How can I set a key attribute?
I have this class in python google app engine:
class Book(db.Model):
name = db.StringProperty()
belongsTo = db.Key()
My question is, how do I create a key object, for example I want to say ...
1
vote
2answers
79 views
Google Apps Engine Datastore Search
I was wondering if there was any way to search the datastore for a entry. I have a bunch of entries for songs(title, artist,rating) but im not sure how to really search through them for both song ...
1
vote
2answers
78 views
How to properly query Datastore with Python? - issue with the basics
As a beginner in Python and App Engine I once again have to ask for your assistance. For some time I've been working with the book "Code in the Cloud" to learn the very basics of using App Engine. The ...
1
vote
1answer
67 views
UTF-8 Python issues with Google Datastore
I've been roaming around these forums asking questions about issues related to Python and UTF-8 encoding/decoding.
This time around I've stumbled upon something which initially seemed an easy ...
0
votes
0answers
19 views
AppEngine setRange being disregarded on some queries
I am successfully using setRange in queries such as the following:
Query query = _pm.newQuery(MyClass.class);
query.setFilter("userId == '" + _userId + "'");
query.setOrdering("timestamp desc");
...
0
votes
0answers
25 views
How to query non-empty lists in a datastore object?
In particular, I am wondering how to run a query against the Quote object below and get all the tags?
class Quote(db.Model):
user = db.ReferenceProperty()
text = db.StringProperty()
tags = ...
0
votes
1answer
28 views
Understanding ReferenceProperty backend behavior in GAE
I'm trying to understand a basic use case of working with GAE db.ReferenceProperties.
Example:
A Magazine db.Model entity has a db.ReferenceProperty(Publisher). I want to get a list of 10 Magazines ...
0
votes
2answers
52 views
Understanding ListProperty backend behavior in GAE
I'm trying to understand how you're supposed to access items in a GAE db.ListProperty(db.Key).
Example:
A Magazine db.Model entity has a db.ListProperty(db.Key) that contains 10 Article entities. I ...
0
votes
1answer
115 views
AppConfigNotFoundError for dev_appserver.py on Django-nonrel and Google App Engine
I'm trying to clear my local db like explained in the docs
But when I try and run the dev_appserver.py --clear_datastore command I get google.appengine.tools.dev_appserver.AppConfigNotFoundError
...
0
votes
1answer
100 views
Google App Engine JDO Query using Alternate logic for 'NOT IN'
I'm developing a Google App Engine Java app where users can search business objects from database based on search criteria.
The search results (a list of records) should not include any of the records ...
0
votes
1answer
104 views
Access data store App engine from Android
It is posible access to app engine data store from Android without authentication. In web you can. I was searching but all tutorials speak about athentication but really a don't need this.
Thanks
0
votes
1answer
53 views
Python: Store a num in Google App Engine
I am using Google App Engine Python.
I would like to store a simple variable number somewhere, so I can add, deduct and use this number.
examplenum=5
example+=1
Next time I use this examplenum, ...