Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the SQL statement of HTML5 Web Database database

2025-03-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

How to use the SQL statement of HTML5 Web Database database, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain in detail for you, people with this need can come to learn, hope you can gain something.

/ / the openDatabase method opens an existing database. If it does not exist, a database is created. The parameters are the name of the database, the version, the description of the database, and the data size var db = window.openDatabase ("mydatabase", "1.0", "my database description", 20000).

How to use the SQL statement of database

Dbname.transaction (function (tx) {tx.executeSql (sql);})

The code is as follows:

/ / the openDatabase method opens an existing database. If it does not exist, a database will be created.

Var db = window.openDatabase ("mydatabase", "1.0", "my database description", 20000)

Var d = new Date ()

/ / create a data table

Var sql = "CREATE TABLE mytable (mytitle TEXT, timestamp REAL)"

Db.transaction (function (tx) {

Tx.executeSql (sql)

});

/ / insert data into the data table

Db.transaction (function (tx) {

Tx.executeSql ("INSERT INTO mytable (mytitle, timestamp) values (?)", ["Huabu Software College of Guangzhou University 3", d.toLocaleString ()], null, null)

});

/ / Delete the data table

/ / db.transaction (function (tx) {

/ / tx.executeSql ("DROP TABLE mytable")

/ /})

Db.transaction (function (tx) {

Tx.executeSql ("SELECT * FROM mytable", []

Function (tx, result) {

For (var I = 0; I < result.rows.length; iTunes +) {

[xss_clean] (''+

Result.rows.item (I) ['mytitle'] + "+

Result.rows.item (I) ['timestamp'] +

'')

}

}

Function () {

Alert ("error")

});

});

Is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report