PhoneGap在android-database中找不到表

时间:2013-10-24 10:38:35

标签: android cordova

在我加载web视图的活动中,我成功创建了一个带有表的数据库。

DB-Name: OpenDb
Table  : filePath
Version: 1

我也有一些Test-Values,我可以从我的activity / helper-class中读取:

id=1, path=/external/images/media/3535

在网页视图中,我尝试访问表格中的数据:

dbHandler.getData = function() {
     var db = window.openDatabase("OpenDb", "1", "OpenDatabase", 200000);
     db.transaction(queryDB, errorCB);
}
function queryDB(tx) {
     tx.executeSql('SELECT * FROM filePath', [], querySuccess, errorCB);
 }

这是错误:

E/SQLiteLog﹕ (1) no such table: filePath

怎么回事?

0 个答案:

没有答案