In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-18 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.