Re: [android-developers] SQLite Database Issues

2011-01-09 Thread Ilya Shinkarenko
I have the same strange story. Notably all the reports come from OTHER platforms. Will fix it with a retry after a small delay. On Fri, Oct 15, 2010 at 1:36 AM, Albert albert8...@googlemail.com wrote: Hi all, I can see from some user's logs that my app randomly gets the following

[android-developers] SQLite Database Issues

2010-10-14 Thread Albert
Hi all, I can see from some user's logs that my app randomly gets the following SQLiteException: android.database.sqlite.SQLiteException: no such table: DietTip: , while compiling: SELECT DISTINCT tip FROM DietTip at android.database.sqlite.SQLiteProgram.native_compile(Native Method)

Re: [android-developers] SQLite Database Issues

2010-10-14 Thread Kumar Bibek
Well, the error is pretty obvious. There is no table with that name. If you have created the table, after your first installation, which didn't have this table, try uninstalling and re-installing this app. Make sure, you create all the tables that you need before you can start using them. On Fri,