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

SQLite Disk I/O Error in Android

An SQLiteDiskIOException error occurred due to insufficient disk I/O space while trying to set the journal mode for an SQLite database connection. This led to failures opening the database connection and getting the writable database.

Uploaded by

titijesus545
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)
45 views1 page

SQLite Disk I/O Error in Android

An SQLiteDiskIOException error occurred due to insufficient disk I/O space while trying to set the journal mode for an SQLite database connection. This led to failures opening the database connection and getting the writable database.

Uploaded by

titijesus545
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-12-26 15:03:01.

905
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:903)
at
android.database.sqlite.SQLiteConnection.executeForString(SQLiteConnection.java:648
)
at
android.database.sqlite.SQLiteConnection.setJournalMode(SQLiteConnection.java:333)
at
android.database.sqlite.SQLiteConnection.setWalModeFromConfiguration(SQLiteConnecti
on.java:298)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:217)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:195)
at
android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionP
ool.java:503)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:204)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:196)
at android.database.sqlite.SQLiteDatabase.openInner(SQLiteDatabase.java:880)
at android.database.sqlite.SQLiteDatabase.open(SQLiteDatabase.java:865)
at
android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:739)
at
android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:729)
at
android.database.sqlite.SQLiteOpenHelper.getDatabaseLocked(SQLiteOpenHelper.java:35
5)
at
android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:
298)
at o.ih5.h(SourceFile:1)
at com.phoenix.slog.SnapTubeLoggerManager.clearCheckWrapper(SourceFile:2)
at o.l.c(SourceFile:4)
at o.cy1.f(SourceFile:3)
at o.l.a(SourceFile:1)
at o.i85.handleMessage(SourceFile:4)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:211)
at android.os.HandlerThread.run(HandlerThread.java:65)

You might also like