[appengine-java] Re: Creation of SQLite on AppEngine

2010-06-22 Thread Maulik Gordhandas
I am able to create in memory sqlite database. Now my concern is how do I send the in-memory db to http stream. Is it possible to retrieve the db from the memory? Thanks On Jun 21, 10:38 pm, Ikai L (Google) ika...@google.com wrote: *It's not clear what you are doing here. If you need

Re: [appengine-java] Re: Creation of SQLite on AppEngine

2010-06-22 Thread Ikai L (Google)
You'll have to consult the library you used to create the in-memory database to figure out how to do that. As far as creating an outputstream - this is just a matter of setting a content type and outputstream. Standard servlet:

Re: [appengine-java] Re: Creation of SQLite on AppEngine

2010-06-21 Thread Ikai L (Google)
*It's not clear what you are doing here. If you need persistence, use the datastore API to store data ( http://code.google.com/appengine/docs/java/datastore/). However, if you need to *transmit* a sqlite database to some client, you'll need to generate the db file and send it down. I don't know

[appengine-java] Re: Creation of SQLite on AppEngine

2010-06-20 Thread Tristan
ditto... if you want SQL this is not the tool to use On Jun 19, 12:22 am, nicolas melendez nfmelen...@gmail.com wrote: Use the datastore, and forget SQL dbs in scalable apps. On Fri, Jun 18, 2010 at 9:28 AM, Maulik Gordhandas maulik.gordhan...@tcs.com wrote: Dear All, Wanted to

[appengine-java] Re: Creation of SQLite on AppEngine

2010-06-20 Thread Maulik Gordhandas
My application use is to store the collected data in an sqlite db file which needs to be sent to a mobile phone. Is it possible to do it in appengine? On Jun 21, 3:19 am, Tristan tristan.slomin...@gmail.com wrote: ditto... if you want SQL this is not the tool to use On Jun 19, 12:22 am,