On Wednesday, August 8, 2012 2:15:15 PM UTC-7, Pedro Cortez wrote:
> Did you close de SQLiteDatabase db? Sometimes in my app when i didnt close
> my db, my app gave me some exception.
> I put this funcion on my activities
> @Override
> protected void onDestroy() {
> super.onDestroy();
> dao.cleanup();
> }
> public void cleanup() {
> if (this.db != null) {
> this.db.close();
> this.db = null;
> }
> }
> I hope i could help u
> On Wed, Aug 8, 2012 at 7:44 AM, Abhi <abhishe...@intersoftprofessional.com<javascript:>
> > wrote:
>> Hello,
>> I am developing an app. It is working fine but if i left the app open for
>> few hours the database gets blank sometimes(1 out of 5). I tried hard to
>> track the issue but couldn't found any. I am using Sqlite database. Please
>> help me as soon as possible.
>> Thanks
>> Abhi
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-d...@googlegroups.com<javascript:>
>> To unsubscribe from this group, send email to
>> android-developers+unsubscribe@googlegroups.com <javascript:>
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
> --
> att,
> Pedro Cortez