Hai guys iam using titanium with sqlite but iam facing problem with sqlite i don't know how to describe my tables in sqlite?plz help me any one,and also give any proper link for sqlite with titanium.
3 Answers
Accepted Answer
Hi Here is a very helpful tutorial with step by step understanding.I am using it to make quiz app.
http://mobile.tutsplus.com/tutorials/appcelerator/titanium-mobile-database-driven-tables-with-sqlite/
For Creating Table : CREATE TABLE IF NOT EXISTS table1 (field1 TEXT, field2 TEXT,field3 TEXT,field4 TEXT) For Inserting Record Table : insert into table1(field1, field2, field3, field4) values (?,?,?,?,?)', field1,field2, field3, field4
Your Answer
Think you can help? Login to answer this question!