[sqlite] Creation of a sqlite database in VC++

2010-01-07 Thread gary clark
Hi, I'm looking for an API in sqlite3 that allows me to create a database? Does one exist or do I have to do this from the command line i.e sqlite3.exe test.db Much appreciate any help on this as I thought one would be more available. Thanks, Gazza __

[sqlite] grabbing row contents?

2010-01-22 Thread gary clark
Hiya, Got a quick question. I perform the following on a table: select * from table How do I know when the select has completed all its transactions? sqlite3_exec(db,query.c_str(),callback, this, &db_err); I'm using the above statement,the callback is getting called as expected. Thanks, gary

Re: [sqlite] grabbing row contents?

2010-01-22 Thread gary clark
Oh boy. Thanks. --- On Fri, 1/22/10, Jay A. Kreibich wrote: > From: Jay A. Kreibich > Subject: Re: [sqlite] grabbing row contents? > To: "General Discussion of SQLite Database" > Date: Friday, January 22, 2010, 10:01 AM > On Fri, Jan 22, 2010 at 07:57:50AM > -0

Re: [sqlite] Understanding locking and connections

2010-05-16 Thread gary clark
The way I got around it was at the programmer level. Rollback,delay and try again. Thanks, Garyc --- On Sun, 5/16/10, Sam Carleton wrote: > From: Sam Carleton > Subject: Re: [sqlite] Understanding locking and connections > To: "General Discussion of SQLite Database" > Date: Sunday, May 16, 2