Re: [sqlite] Open the database - Creating the empty database

2008-12-15 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joanne Pham wrote: > The problem here is the database is not created but if the second process has >tried to access the database then the empty database is created which has the size of 0. If you use sqlite3_open_v2 then you can specify flags for

Re: [sqlite] Open the database - Creating the empty database

2008-12-15 Thread Derrell Lipman
On Mon, Dec 15, 2008 at 1:43 PM, P Kishor wrote: > On 12/15/08, Joanne Pham wrote: > > Hi All, > > I have this problem about open the database. Here is the detail about > the problem. > > > > Our application have one process to create the database

Re: [sqlite] Open the database - Creating the empty database

2008-12-15 Thread Joanne Pham
008 10:43:57 AM Subject: Re: [sqlite] Open the database - Creating the empty database On 12/15/08, Joanne Pham <joannekp...@yahoo.com> wrote: > Hi All, >  I have this problem about open the database. Here is the detail about the >problem. > >  Our application have one process t

Re: [sqlite] Open the database - Creating the empty database

2008-12-15 Thread P Kishor
On 12/15/08, Joanne Pham wrote: > Hi All, > I have this problem about open the database. Here is the detail about the > problem. > > Our application have one process to create the database and another process > to open the database and creating the report. > The

[sqlite] Open the database - Creating the empty database

2008-12-15 Thread Joanne Pham
Hi All, I have this problem about open the database. Here is the detail about the problem.   Our application have one process to create the database and another process to open the database and creating the report. The problem here is the database is not created but if the second process has