2011-12-29 88 views
0

我在應用程序中收到來自零星SQLiteException的崩潰報告。我並不直接與SQLite數據庫進行交互。我已將代碼追蹤到WebView小部件的使用情況。例外的原因不同,但有一對夫婦的例子如下...Android WebView拋出SQLiteException

android.database.sqlite.SQLiteException: database is locked: BEGIN EXCLUSIVE; 
at android.database.sqlite.SQLiteDatabase.native_execSQL(Native Method) 
at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1768) 
at android.database.sqlite.SQLiteDatabase.beginTransactionWithListener(SQLiteDatabase.java:558) 
at android.database.sqlite.SQLiteDatabase.beginTransaction(SQLiteDatabase.java:512) 
at android.webkit.WebViewDatabase.startCacheTransaction(WebViewDatabase.java:603) 
at android.webkit.CacheManager.enableTransaction(CacheManager.java:251) 
at android.webkit.WebViewWorker.handleMessage(WebViewWorker.java:214) 
at android.os.Handler.dispatchMessage(Handler.java:99) 
at android.os.Looper.loop(Looper.java:143) 
at android.os.HandlerThread.run(HandlerThread.java:60) 

另一個例子......

java.lang.RuntimeException: Unable to create application com.example.MyApplication: android.database.sqlite.SQLiteException: near "VALUES": syntax error: , while compiling: INSERT INTO cache (VALUES (
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3828) 
at android.app.ActivityThread.access$2200(ActivityThread.java:132) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1082) 
at android.os.Handler.dispatchMessage(Handler.java:99) 
at android.os.Looper.loop(Looper.java:150) 
at android.app.ActivityThread.main(ActivityThread.java:4293) 
at java.lang.reflect.Method.invokeNative(Native Method) 
at java.lang.reflect.Method.invoke(Method.java:507) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597) 
at dalvik.system.NativeStart.main(Native Method) 
Caused by: android.database.sqlite.SQLiteException: near "VALUES": syntax error: , while compiling: INSERT INTO cache (VALUES (
at android.database.sqlite.SQLiteCompiledSql.native_compile(Native Method) 
at android.database.sqlite.SQLiteCompiledSql.compile(SQLiteCompiledSql.java:92) 
at android.database.sqlite.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:65) 
at android.database.sqlite.SQLiteProgram.<init>(SQLiteProgram.java:83) 
at android.database.sqlite.SQLiteStatement.<init>(SQLiteStatement.java:41) 
at android.database.sqlite.SQLiteDatabase.compileStatement(SQLiteDatabase.java:1231) 
at android.database.DatabaseUtils$InsertHelper.getStatement(DatabaseUtils.java:858) 
at android.database.DatabaseUtils$InsertHelper.getColumnIndex(DatabaseUtils.java:904) 
at android.webkit.WebViewDatabase.getInstance(WebViewDatabase.java:397) 
at android.webkit.WebView.<init>(WebView.java:1077) 
at android.webkit.WebView.<init>(WebView.java:1054) 
at android.webkit.WebView.<init>(WebView.java:1044) 
at android.webkit.WebView.<init>(WebView.java:1035) 
at com.example.MyApplication.getWebView(MyApplication.java:223) 
at com.example.MyApplication.loadUrlInWebView(MyApplication.java:249) 
at com.example.MyApplication.onCreate(MyApplication.java:169) 
at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:984) 
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3825) 
... 10 more 

爲什麼會崩潰,這些正在發生?有沒有其他人有這個問題?

注:錯誤報告的平臺均列爲其他,所以也許這只是一個仿真器或操作系統的非正式版本發生。

回答

2

這可能與webview DOM存儲有關。請參閱WebSettings.setDatabaseEnabled和WebSettings.setDatabasePath。

http://developer.android.com/reference/android/webkit/WebSettings.html#setDatabaseEnabled(boolean) http://developer.android.com/reference/android/webkit/WebSettings.html#setDatabasePath(java.lang.String)

一個常見的抱怨是,DOM存儲不工作,這通常是固定的這樣的代碼:

mWebView.getSettings().setDomStorageEnabled(true); 
mWebView.getSettings().setDatabaseEnabled(true); 
mWebView.getSettings().setDatabasePath("/data/data/packagename/databases/"); 

我從來沒有聽說過的崩潰問題,這一點,但當你禁用DOM存儲以及指定正確的數據庫路徑時(如上面使用應用程序的包名所示),可能值得研究一下。

這個線程也可能會有所幫助:
Android - Making Webview DomStorage persistant after app closed

+0

這似乎很可能是罪魁禍首。我沒有加載任何利用HTML5數據API的HTML,所以我不知道我是否可以完全關閉DOM存儲和數據庫訪問?如果我不需要,我不願意硬編碼數據庫路徑。 – 2011-12-30 01:15:33

相關問題