在 HTML5 中创建或打开数据库表
如果我使用以下代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解你的问题(我并不完全清楚),那么你需要创建一个表(如果该表尚不存在):
If I understand your question (which isn't completely clear to me), you need to create a table if one doesn't already exist: