在我加载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
怎么回事?