How can I check weather specific table does exists or not in my database before execute query ?
Example : I want to check weather Detail table exists or not in InfoDB
I want to do some thing like :-
var createDB = Titanium.Database.open('InfoDB');
if(Detail exists in InfoDB)
then
var rs = createDB.execute('SELECT * FROM Detail');
Thanks...