Re: [sqlite] Reg: In Memory Database Using SQLite

2010-07-10 Thread ca44
Yes, please do send it to me. Thx -C - Original Message - From: "Subhadeep Ghosh" To: "General Discussion of SQLite Database" Sent: Saturday, July 10, 2010 7:42:03 AM Subject: Re: [sqlite] Reg: In Memory Database Using SQLite Hi Chris, I had attached

Re: [sqlite] Reg: In Memory Database Using SQLite

2010-07-10 Thread Subhadeep Ghosh
wrote: > > > Hi Subhadeep, > > I'm not seeing the source code included anywhere in your email. > > > > Thx > > -Chris > > > - Original Message - > From: "Subhadeep Ghosh" > To: sqlite-users@sqlite.org > Sent: Wednesday, July 7, 2

Re: [sqlite] Reg: In Memory Database Using SQLite

2010-07-10 Thread ca44
Hi Subhadeep, I'm not seeing the source code included anywhere in your email. Thx -Chris - Original Message - From: "Subhadeep Ghosh" To: sqlite-users@sqlite.org Sent: Wednesday, July 7, 2010 1:51:28 PM Subject: [sqlite] Reg: In Memory Database Using SQLite

Re: [sqlite] Reg: In Memory Database Using SQLite

2010-07-08 Thread Eric Smith
Subhadeep Ghosh wrote: > I am aware of the functionality which you mentioned. But the reason why > I ended up coding the feature was because of a very specific requirement. > My requirement was such that some of my client applications were running > on disk-less systems where I was not using

Re: [sqlite] Reg: In Memory Database Using SQLite

2010-07-08 Thread Subhadeep Ghosh
Hello Eric, I am aware of the functionality which you mentioned. But the reason why I ended up coding the feature was because of a very specific requirement. My requirement was such that some of my client applications were running on disk-less systems where I was not using any kind of network stor

Re: [sqlite] Reg: In Memory Database Using SQLite

2010-07-08 Thread Eric Smith
Subhadeep Ghosh wrote: > I finally managed to create a wrapper around the SQLite core to support > the creation of in-memory databases. The wrapper comprises of three > functions - one to serialize the database, one to de-serialize a database > and the third one to do the cleanup job. > >

[sqlite] Reg: In Memory Database Using SQLite

2010-07-07 Thread Subhadeep Ghosh
Hello People, I finally managed to create a wrapper around the SQLite core to support the creation of in-memory databases. The wrapper comprises of three functions - one to serialize the database, one to de-serialize a database and the third one to do the cleanup job. The function which serialize

Re: [sqlite] Reg: In Memory Database Using SQLite

2010-07-06 Thread Jean-Christophe Deschamps
>I'm aware that SQLite offers the functionality of in-memory databases, >but I >don't know how to read the data and send it over the wire to the server or >how to push the data into the in-memory database of the server. The backup API included in SQLite offers the facility to backup/restore (in

[sqlite] Reg: In Memory Database Using SQLite

2010-07-06 Thread Subhadeep Ghosh
Hello People, I was creating a server and a corresponding client application, in which the I'm using SQLite for both the client and the server. The tricky part in this setup is that the client is not required to store the database file with itself, but it fetches it from the server, does whatever