我试图从我的 sql 数据库中提取,而不必将其加载到 var 中并使用 for 循环提取我想要的项目。
如何获取第 5 个索引中的 5 个项目“”5“”第 10 个索引...
这就是我正在做的事情,而不是骇人听闻的方式。
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');