If you only want this for when you're actually creating the table, rather than trying to confirm it exists: >From http://www.sqlite.org/lang_createtable.html CREATE [TEMP | TEMPORARY] TABLE [IF NOT EXISTS] [database-name .] table-name ( column-def [, column-def]* [, constraint]* )
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Tuesday, 26 August 2008 4:54 AM To: [email protected] Subject: [flexcoders] Re: How to check a table already exist in SQLite? Thanks for your help. I want to know if SQLConnection provide a method to check if a table already exist or not. Thanks Mark

