[android-developers] SQLiteException: no such table

2012-05-24 Thread Ralph Bergmann | the4thFloor.eu
Hello, my app was released a year ago or so, but now one year later, I get the following error message: android.database.sqlite.SQLiteException: no such table: tracking: , while compiling: SELECT _id, ... How can it happen that the table does not exist? In one installation of thousands? The

[android-developers] SQLiteException: no such table .... on device

2011-05-18 Thread am.fraga.led
Hi everybody. I´ve a problem about sqlite3 testing my app on a device. In my app, I have created a simple database with 2 tables. When I run the app on the emulator, the app works fine: - The database exists in the rute: /data/data/my_package/databases/my_database - I´m able to query the

Re: [android-developers] SQLiteException: no such table .... on device

2011-05-18 Thread Mark Murphy
On Wed, May 18, 2011 at 7:39 AM, am.fraga.led am.fraga@gmail.com wrote: Could you possibly help me with this problem? Your database does not have the table. Try uninstalling and reinstalling the application, to force your code to rebuild the table (e.g., SQLiteOpenHelper onCreate()).

Re: [android-developers] SQLiteException: no such table .... on device

2011-05-18 Thread Nikolay Elenkov
On Wed, May 18, 2011 at 8:39 PM, am.fraga.led am.fraga@gmail.com wrote: Hi everybody. I´ve a problem about sqlite3 testing my app on a device. In my app, I have created a simple database with 2 tables. When I run the app on the emulator, the app works fine: - The database exists in the