Hello, I have my app with its UI and a periodic Service both accessing
the same SQLite database.

It appears when the Service is trying to hit the database and the UI
has it open, I am getting a SQLiteException:

android.database.sqlite.SQLiteDiskIOException: disk I/O error
at android.database.sqlite.SQLiteDatabase.native_setLocale(Native
Method)
at
android.database.sqlite.SQLiteDatabase.setLocale(SQLiteDatabase.java:
2101)
at android.database.sqlite.SQLiteDatabase.<init>(SQLiteDatabase.java:
1969)
at
android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:
902


I am opening the database see that I can call
isDbLockedByCurrentThread() on it, but it's not even getting that
far.  It's kind of like a chicken/egg situation as I cannot open the
database to see it's locked, because it's crashing first.

I am using SQLiteDatabase.openDatabase(this.file, null,
SQLiteDatabase.OPEN_READWRITE) to open the database.

Anybody has a clue how to get around this?

-- 
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
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to