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

SQLite Disk I/O Error Debugging

The document describes an SQLiteDiskIOException error occurring in an Android application, specifically a disk I/O error with code 4874 while executing a PRAGMA journal_mode command. The error is traced through various methods in the SQLiteConnection and SQLiteDatabase classes, indicating issues with opening or creating a database. This suggests potential problems with the database configuration or the underlying storage system.

Uploaded by

naimaelba17
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)
4 views1 page

SQLite Disk I/O Error Debugging

The document describes an SQLiteDiskIOException error occurring in an Android application, specifically a disk I/O error with code 4874 while executing a PRAGMA journal_mode command. The error is traced through various methods in the SQLiteConnection and SQLiteDatabase classes, indicating issues with opening or creating a database. This suggests potential problems with the database configuration or the underlying storage system.

Uploaded by

naimaelba17
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

2025-02-07_17-36-59

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:1068)
at
android.database.sqlite.SQLiteConnection.executeForString(SQLiteConnection.java:811
)
at
android.database.sqlite.SQLiteConnection.setJournalMode(SQLiteConnection.java:419)
at
android.database.sqlite.SQLiteConnection.setJournalFromConfiguration(SQLiteConnecti
on.java:339)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:268)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:205)
at
android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionP
ool.java:512)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:210)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:202)
at android.database.sqlite.SQLiteDatabase.openInner(SQLiteDatabase.java:1085)
at android.database.sqlite.SQLiteDatabase.open(SQLiteDatabase.java:1065)
at
android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:956)
at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:966)
at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:951)
at
android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:369)
at org.xutils.db.DbManagerImpl.d(DbManagerImpl.java:43)
at org.xutils.db.DbManagerImpl.<init>(DbManagerImpl.java:14)
at org.xutils.db.DbManagerImpl.getInstance(DbManagerImpl.java:23)
at org.xutils.x.getDb(x.java:1)
at h6.b.a(SearchHistoryDb.java:3)
at w5.c$a.run(SearchManager.java:25)

You might also like