[google-appengine] Re: Connecting to the datastore

2010-07-24 Thread genjlc
I am trying to connect to the datastore from within the confines of an app. The app (client) is currently looping through an array of strings, where every string is a URL to a pic. The client is periodically bugging the server for some data that it then displays to the user. This is all static a

[google-appengine] Re: Connecting to the datastore

2010-07-25 Thread Luis Daniel Mesa Velasquez
1. Copy JARs 2. Create jdoconfig.xml 3. Obtain a PersistenceManager http://code.google.com/appengine/docs/java/datastore/usingjdo.html What do you exactly mean by "create the DB connection"? Just obtain the persistence manager ...and persist. On Jul 24, 5:06 pm, genjlc wrote: > I am trying to

[google-appengine] Re: Connecting to the datastore

2010-07-26 Thread genjlc
Ok I think I was making the whole thing harder than it had to be. Additionally, I did ALLOT of reading to try and find an example of how to store and retrieve data from Google's Data store. There was some stray code left over from one of those early attempts that was detonating. Everything appear

[google-appengine] Re: Connecting to the datastore

2010-07-31 Thread Luis Daniel Mesa Velasquez
If the Set is an attribute of another persisted entity, check the default prefetch group setting... so that when an entity is loaded, the collection which is an attribute is also loaded in the same request. Good luck! :) On Jul 26, 1:56 pm, genjlc wrote: > Ok I think I was making the whole thing