[android-beginners] Re: Problem with SQLite database, accessing the table

2009-05-12 Thread Michaël Gerber
I will try to change the table name. I hope that it will fix my problem. Thanks. Michaël 2009/5/11 Arnaud Weber > isn't options a forbidden name for a table?? > it's like a table called delete or select... > select * from select... > > you should definitely try with another tablename. > > 2009/5

[android-beginners] Re: Problem with SQLite database, accessing the table

2009-05-11 Thread Arnaud Weber
isn't options a forbidden name for a table?? it's like a table called delete or select... select * from select... you should definitely try with another tablename. 2009/5/11 moazzamk > > Use a different database name and see if that helps (since it will run > your onCreate() method). You can al

[android-beginners] Re: Problem with SQLite database, accessing the table

2009-05-11 Thread moazzamk
Use a different database name and see if that helps (since it will run your onCreate() method). You can also try changing the name of the table to something else (like user_options) and see if that works. I wonder if options is an internal keyword used by SQLite. - Moazzam http://moazzam-khan.com

[android-beginners] Re: Problem with SQLite database, accessing the table

2009-05-07 Thread Glen Humphrey
It looks to me like your program tries to fetch from the options table before it has been created. On May 7, 2:28 am, "mic.ger...@gmail.com" wrote: > Hi all, > I am developing an application that need a database (store username > and password) and when I try to access to it I obtain those errors