> I got following Exception while inserting data into database. The > Exception is as follow. > > > no such table: inbox > : , while compiling: INSERT INTO inbox(from_num, content, date1, > time1) VALUES(? > , ?, ?, ?);
Presumably, you have no table named "inbox" in your database. Double-check your code that creates the database, or pull the database off your device and inspect it with a SQLite program (e.g., SQLite Manager extension for Firefox), or use adb shell and the built-in console sqlite3 program to inspect the database. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

