0% found this document useful (0 votes)
75 views1 page

HM Crashlog

An error occurred while executing background tasks in an Android app. The error was caused by a disk I/O error when trying to set the journal mode of an SQLite database connection. This resulted in a runtime exception being thrown in the AsyncTask that was performing the background database operations.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
75 views1 page

HM Crashlog

An error occurred while executing background tasks in an Android app. The error was caused by a disk I/O error when trying to set the journal mode of an SQLite database connection. This resulted in a runtime exception being thrown in the AsyncTask that was performing the background database operations.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

2023-05-04_11-15-21

java.lang.RuntimeException: An error occurred while executing doInBackground()


at android.os.AsyncTask$4.done(AsyncTask.java:415)
at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:381)
at java.util.concurrent.FutureTask.setException(FutureTask.java:250)
at java.util.concurrent.FutureTask.run(FutureTask.java:269)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
at java.lang.Thread.run(Thread.java:1012)
Caused by: android.database.sqlite.SQLiteDiskIOException: disk I/O error (code 4874
SQLITE_IOERR_SHMSIZE): , while compiling: PRAGMA journal_mode
at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native
Method)
at
android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.
java:1047)
at
android.database.sqlite.SQLiteConnection.executeForString(SQLiteConnection.java:790
)
at
android.database.sqlite.SQLiteConnection.setJournalMode(SQLiteConnection.java:407)
at
android.database.sqlite.SQLiteConnection.setWalModeFromConfiguration(SQLiteConnecti
on.java:347)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:260)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:205)
at
android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionP
ool.java:505)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:206)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:198)
at android.database.sqlite.SQLiteDatabase.openInner(SQLiteDatabase.java:919)
at android.database.sqlite.SQLiteDatabase.open(SQLiteDatabase.java:899)
at
android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:790)
at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:950)
at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:935)
at
android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:348)
at org.xutils.db.DbManagerImpl.b(DbManagerImpl.java:5)
at org.xutils.db.DbManagerImpl.<init>(DbManagerImpl.java:4)
at org.xutils.db.DbManagerImpl.getInstance(DbManagerImpl.java:3)
at org.xutils.x.getDb(Unknown Source:0)
at u4.a.g(CommunityDb.java:1)
at z3.d$a.a(ModCommentManager.java:64)
at z3.d$a.doInBackground(Unknown Source:2)
at android.os.AsyncTask$3.call(AsyncTask.java:394)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
... 3 more

You might also like