Re: [android-developers] How to provide updates on sqlite database

2011-07-26 Thread lbendlin
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. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

Re: [android-developers] How to provide updates on sqlite database

2011-07-26 Thread Abhishek Akhani
You can do it in Database Halper class' onUpgrade() method override it and delete the old database and create new with new data -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

Re: [android-developers] How to provide updates on sqlite database

2011-07-26 Thread TreKing
On Tue, Jul 26, 2011 at 7:14 AM, sourabh sahu wrote: > Please suggest me.If I change my database it should be updated to users.How > to implement this. Start reading: http://developer.android.com/reference/android/database/sqlite/package-summary.html ---

[android-developers] How to provide updates on sqlite database

2011-07-26 Thread sourabh sahu
Hi All, Please suggest me.If I change my database it should be updated to users.How to implement this. Thanks Sourabh -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com