On 22 Mar 2011, at 1:38pm, Pavel Ivanov wrote:

> You can use a simple CREATE TABLE (without IF NOT EXISTS clause). If
> it succeeds then you populate table with data (remember to do that in
> the same transaction where you created the table). If CREATE TABLE
> fails then you don't insert your data.

Or just do a 'SELECT id FROM whatever LIMIT 1'.  If you get any error, it 
doesn't exist, so create it and fill it.

Or look in sqlite_master for an entry for the TABLE.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to