在 HTML5 中创建或打开数据库表

发布于 2024-12-21 04:00:51 字数 327 浏览 1 评论 0原文

如果我使用以下代码:

var db = openDatabase("CurrADinfo", "1", "A list of QC Points.", 100000);
db.transaction(function (tx) {
     tx.executeSql('CREATE TABLE foo (id , text)');
});

它将创建或打开数据库 CurrADinfo (如果存在)。但第二行总是会创建一个新表。

我想创建一个表一次,下次当我尝试创建它时应该返回一个在数据库中找到它的标志。我怎样才能做到这一点?

If I use the below code:

var db = openDatabase("CurrADinfo", "1", "A list of QC Points.", 100000);
db.transaction(function (tx) {
     tx.executeSql('CREATE TABLE foo (id , text)');
});

It will create or open the database CurrADinfo if it exists. But the second line will always create a new table.

I want to create a table once and next time when I try to create it should return a flag that it is found in the database. How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨轻弹 2024-12-28 04:00:51

如果我理解你的问题(我并不完全清楚),那么你需要创建一个表(如果该表尚不存在):

tx.executeSql('CREATE TABLE IF NOT EXISTS foo (id , text)');

If I understand your question (which isn't completely clear to me), you need to create a table if one doesn't already exist:

tx.executeSql('CREATE TABLE IF NOT EXISTS foo (id , text)');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文