Have you looked at this?
所以一旦你從數據庫中獲取的行,只爲您的tableview行。這裏是一個開始:
// Fetch the db and execute a select from your person table
var db = Ti.Database.open('mydb');
var rows = db.execute('SELECT * FROM person');
var persons = [];
while (rows.isValidRow())
{
persons.push({title : + rows.fieldByName('Last Name'));
rows.next();
};
rows.close();
var yourTable = Ti.UI.createTableView({
width : Ti.UI.FILL,
height : Ti.UI.FILL,
data: persons // Set the rows to the table
});
// Dont forget to close the db
db.close();
Use this as a reference to style your table rows more effectively.
首先,讓我們知道你是否能創建數據庫或沒有,做一些數據庫條目與否,從與否檢索數據庫。你能創建TableView嗎? –
嘿!我已經使用SQLite創建了一個數據庫,並使用該程序向數據庫輸入了一些數據。然後我可以使用安裝數據庫方法安裝數據庫。 –
此外,我能夠創建tableview,只是我不知道如何顯示數據庫中的值TableViewRows –