What is the best SQL for a SQLite database to effectively do:
If Database Table Exists then - create table - insert row - insert row (i.e. for startup data) end
To check that your table exists or not, you can use:
SELECT * FROM sqlite_master WHERE name ='myTable' and type='table';
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
2795 times
active