[appengine-java] Re: Any examples on how to use the data store low level Java API?

2010-04-12 Thread Tristan
I should be able to help... what are you trying to do? to use a predefined type that is storable in the datastore (http:// code.google.com/appengine/docs/java/datastore/ dataclasses.html#Core_Value_Types) all you do is cast that property so.. Entity entity = new Entity("myKind"); Email myEmail

[appengine-java] Re: Any examples on how to use the data store low level Java API?

2010-04-13 Thread Didier Durand
Hi Fred, The most detailed samples that I found up to now are in this book: http://www.amazon.com/Programming-Google-App-Engine-Infrastructure/dp/059652272X/ref=sr_1_1?ie=UTF8&s=books&qid=1271167954&sr=8-1 Many chapters devoted to Datastore in all its aspects. The definite reading for your needs!

Re: [appengine-java] Re: Any examples on how to use the data store low level Java API?

2010-04-29 Thread Fred Janon
Hi Tristan Sorry I didn't answer earlier, I got sick and I am trying to catch up with other things at the moment. Thanks for your answer and your example. I will take up on your offer some time soon. Cheers, Fred On Tue, Apr 13, 2010 at 01:03, Tristan wrote: > I should be able to help... what

Re: [appengine-java] Re: Any examples on how to use the data store low level Java API?

2010-04-29 Thread Fred Janon
Thanks a lot for the pointer, Didier. I'll buy the book ASAP. Sorry I didn't answer earlier, I got sick and I am trying to catch up with other things at the moment. Fred On Tue, Apr 13, 2010 at 22:14, Didier Durand wrote: > Hi Fred, > > The most detailed samples that I found up to now are in th