我很难弄清楚为什么我不断收到这个错误。我已经搜索了这个论坛和其他论坛,但似乎没有答案可以提供帮助,所以我会在这里问。
我正在尝试使用 Titanium 为 Android 创建一个基本的照片目录应用程序。目录信息存储在 sqlite 数据库中。
我可以创建数据库 OK - 我可以在一个窗口中访问其中的一些信息。当我然后转到另一个窗口并尝试从表中获取更多信息时,它给了我错误:
未捕获的错误:没有这样的表:照片:,在编译 SELECT 时......
请参见下面的代码:
这是从 app.js 打开的第一个窗口
表格在这里显示得很好 - 没有错误
// create var for the currentWindow
var currentWin = Ti.UI.currentWindow;
// set the data from the database to the array
//function setData() {
// create table view
var tableview = Ti.UI.createTableView({
});
//var db = Ti.Database.open('catalogue');
//db.remove();
var db = Ti.Database.install('catalogue.sqlite','photos');
var rows = db.execute('SELECT * FROM photos GROUP BY title');
// create the array
var dataArray = [];
while(rows.isValidRow()) {
var title = rows.fieldByName('title');
var id = rows.fieldByName('id');
dataArray.push({title:title, id:id, url:'catalogue_detail.js'});
rows.next();
}
tableview.setData(dataArray);
// add the tableView to the current window
currentWin.add(tableview);
tableview.addEventListener('click', function(e){
if (e.rowData.url)
{
var win = Ti.UI.createWindow({
id:e.rowData.id,
title:e.rowData.title,
url:e.rowData.url
});
win.open();
}
});
// call the setData function to attach the database results to the array
//setData();
然后我从上面打开 catalogue_detail.js ,我得到了错误
catalogue_detail.js
var win = Titanium.UI.currentWindow;
var id = win.id
var tableview = Titanium.UI.createTableView({
});
var db = Titanium.Database.open('catalogue.sqlite');//I have chanegd this to 'photos' and I get the same error
var sql = db.execute('SELECT title, location, photographer FROM photos where id="' + id + '"');
var title = sql.fieldByName('title');
var location = sql.fieldByName('location');
var photographer = sql.fieldByName('photographer');
// create the array
var dataArray = [];
while(sql.isValidRow()) {
var title = sql.fieldByName('title');
var location = sql.fieldByName('location');
var photographer = sql.fieldByName('photographer');
dataArray.push({title:title, location:location, photographer:photographer});
sql.next();
}
tableview.setData(dataArray);
win.add(tableview);
所以我的数据库中名为“照片”的表在一个窗口中打开,然后我在尝试打开同一个数据库时遇到错误?
我已经卸载了应用程序,重新创建了数据库,重命名了表等,但仍然是同样的错误......
我确信这是我想念的一件简单的事情,但我很困惑!
感谢您的任何帮助。
JC