JQUERY web sql database - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

web sql database


 419

JQUERY


2

// works in chrome, opera, safari
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://code.jquery.com/jquery-2.1.3.min.js" type="text/javascript"></script>
</head>
<body>
<script>
$(document).ready(function () {

$("#btn_create").click(function () {
var db = null;
db = window.openDatabase("MyDb", "1.0", "my database", 1024 * 1024 * 3);

db.transaction(function (tx) {

// create the table
tx.executeSql(
"CREATE TABLE MYTABLE (id INTEGER, country VARCHAR(255), city VARCHAR(255))", [],
function () { $("#output1").text("table has been sucessfully created!"); },
function (tx, error) { $("#output1").text(error.message); });
});
});

// insert the records

$("#btn_insert").click(function () {
var id = $("#id").text();
var country = $("#country").text();
var city = $("#city").text();

var db=null;
db = window.openDatabase("MyDb", "1.0", "my database", 1024*1024*3);

db.transaction(function(tx){

tx.executeSql(
"INSERT INTO MYTABLE (id, country, city) VALUES (?,?,?)", [id,country,city],
function(){$("#output2").text("record has been sucessfully inserted!");},
function(tx, error){$("#output2").text(error.message);});
});
});

// read the records
$("#btn_read").click(function () {
var db = null;
db = window.openDatabase("MyDb", "1.0", "my database", 1024 * 1024 * 3);

db.transaction(function (tx) {

tx.executeSql("SELECT id, country, city FROM MYTABLE", [],
function (SQLTransaction, data) {
for (var i = 0; i < data.rows.length; i++) {
var row = data.rows.item(i);
alert(row["id"]);
alert(row["country"]);
alert(row["city"]);
}

});
});

});


// drop the table
$("#btn_remove").click(function () {
var db = null;
db = window.openDatabase("MyDb", "1.0", "my database", 1024 * 1024 * 3);

db.transaction(function (tx) {

tx.executeSql("DROP table MYTABLE", [],
function () { $("#output3").text("table has been sucessfully removed!"); },
function (tx, error) { $("#output3").text(error.message); });

});
});
});
</script>

<div id="id">1</div></br>
<div id="country">USA</div></br>
<div id="city">San Diego</div></br>
<div id="output1"></div></br>
<div id="output2"></div></br>
<div id="output3"></div></p>

<button id="btn_create">create table</button>
<button id="btn_insert">insert record</button>
<button id="btn_read">read record</button>
<button id="btn_remove">remove table</button>

</body>
</html>


By        
The power of the user (%)
62%



The most helpful JQUERY solutions

plugin get client ip address using jqueryplugin get client ip address using jqueryJQUERY

Click to see more ...

  10.5K     1.8K

How to get client machine name or computer name with jquery?How to get client machine name or computer name with jquery?JQUERY

Click to see more ...

  15.6K     793

plugin detect country jqueryplugin detect country jqueryJQUERY

Click to see more ...

  5.5K     772

cookie jquerycookie jqueryJQUERY

Click to see more ...

  3.7K     398

plugin convert thousands to K jqueryplugin convert thousands to K jqueryJQUERY

Click to see more ...

  3.2K     402

show position on google map jqueryshow position on google map jqueryJQUERY

Click to see more ...

  2.5K     389

how to create a jquery plugin for converting date to days ago, month ago and year ago ?how to create a jquery plugin for converting date to days ago, month ago and year ago ?JQUERY

Click to see more ...

  2.7K     349

How to detect the version of IE browser using jquery ?How to detect the version of IE browser using jquery ?JQUERY

Click to see more ...

  2.5K     338

How to get top, right, left, bottom position of element div using jquery ?How to get top, right, left, bottom position of element div using jquery ?JQUERY

Click to see more ...

  2.7K     296

how to get ip address using jquery ?how to get ip address using jquery ?JQUERY

Click to see more ...

  2.4K     286

Welcome aboard!
We are happy you are here and
wish you good net-raft!