gpt4 book ai didi

html - 本地数据库存储默认数据

转载 作者:太空狗 更新时间:2023-10-29 14:17:01 25 4
gpt4 key购买 nike

我使用 HTML 5 Localstorage 开发了应用程序。

如何在初始化之前创建一个 TABLE 并填充 10000 多行支持 HTML 5 的应用程序。

请提出一个模式。

最佳答案

var db = openDatabase('dbname', 'dbversion 1.0', 'description', 64*1024);
db.transaction(function (query){
query.executeSql('CREATE TABLE IF NOT EXISTS tablename (id unique, value)');
var rows = 10000, i;
for(i=0; i < rows; i++){
query.executeSql('INSERT INTO tablename (id, value) VALUES ('+ i + ', "Stackoverflow")');
}

query.executeSql('SELECT * FROM tablename', [], function (query, results) {
for (i = 0; i < 5; i++) {
alert(results.rows.item(i).text);
}
});
});

//Do magic with your webapp now

接受的查询是SQLite类型。检查official specification了解更多。

关于html - 本地数据库存储默认数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2391761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com