On Jul 27, 12:56 am, lbendlin <[email protected]> wrote: > that's probably not what you want to do. Instead, use the onUpgrade method > to run a couple of SQL scripts to adjust the table structures without losing > the data.
Correct. You'll want to focus on updating the SQLite database with SQL commands without recreating a table every time from scratch. That could be terribly inefficient. If you are accessing a SQLite separate database from the SD card instead of the internally defined one, then you'll have to make sure you have appropriate permissions intact to do so. -- 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

