Cursors, Sqlite, And Queries
I have a sqlitedatabase I'm implementing within my app and I keep receiving an IllegalStateException when launching. 09-21 22:48:26.749 15762-16277/nz.co.exium.panther E/Android
Solution 1:
Are you certain the table was actually created? There's a semi-colon mising from the end of your SQL_CREATE_CUSTOMER_TABLE text string - although I'm not sure if it is mandatory to run the sql for creating the table. I would suggest running it on the Eclipse emulator, then from the DDMS perspective, take a copy of the database somewhere where you can open it with the SQLite Manager plugin for Firefox - this will show you the database tables.
Post a Comment for "Cursors, Sqlite, And Queries"