我試圖從我的sql數據庫中取出,而不必將其加載到var中,然後使用for循環將所需項目拉出來。從sql中獲取特定索引
我怎樣才能在第五指數 「的5個項目」 5「」 10指數...
這是我在做什麼不是它的方式的hackish。
function get_db(a) {
index_count=a
db.transaction(
function(tx) {
var rs = tx.executeSql('SELECT * FROM Greeting');
var r=""
if (up_check === 0){
index_count = index_count +4
}
r += rs.rows.item(index_count).salutation + ": " + rs.rows.item(index_count).salutee + "\t\t"
})
return r
}
我非常想要得到的東西像
var rs = tx.executeSql('SELECT * FROM index_count (and the next for items) Greeting');