I am using the sqlite in my app using titanium and i am using variable in query.The problem with me is that when i don't use variable it gives me the perfect result.The query without variable is as
"select * from IQ where Quote_id =1 "
and when i use the variable it gives me the above mentioned error.The query with the variable is as follows and the value of Ti.App.index maybe between 0-47
"select * from IQ where Quote_id =? ",Ti.App.index
could somebody help me what i am doing wrong