Hi all, I'm new to sqlite, and was wondering - I have an app I'm working at integrating it to, and the program by default has no data file, when data is first input it attempts to open / creates the data file.
Now my question is - since the open function will create a new file without throwing back any error stating that a new file was created, I am now faced with the problem of how do I check if a table is there or not? Do I just make a call to create_table and if it throws back an error assume the table already existed? Or is there a way within the api that I haven't found to test for existance of tables? -Tony