Re: [sqlite] Command to create a database in sqlite

2008-03-24 Thread John Stanton
sqlite3_open. Mozaharul Haque wrote: > Hi, > > A silly asking. I found the command to create a table but what about to > create a database? > > The table would be stored in the sqlite_master table. > > And how do I refer (full path) to the database using application like > Basic4ppc 6.05. > >

Re: [sqlite] Command to create a database in sqlite

2008-03-24 Thread Igor Tandetnik
"Mozaharul Haque" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > A silly asking. I found the command to create a table but what about > to create a database? Just give a file name to sqlite3_open, then create a table. If the file didn't exist, it will be created at this point. Igo

[sqlite] Command to create a database in sqlite

2008-03-24 Thread Mozaharul Haque
Hi, A silly asking. I found the command to create a table but what about to create a database? The table would be stored in the sqlite_master table. And how do I refer (full path) to the database using application like Basic4ppc 6.05. Please help. regards, Mozaharul Haque ___