I'm working on a mobile application using Jquery Mobile & Phonegap. I used to send data to a server but now I want to make it locally stored using sqlite. What I made before was :
function CallUpdate(varx) {
var postData = { 'Function': '...', 'Varx': JSON.stringify(varx) };
$.ajax({
type: "GET",
url: serviceUrl + "/datagathering.aspx",
data: postData,
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
jsonp: 'jsoncallback',
success: function (result) {
alert('Your changes have been saved!');
},
error: function (msg) {
alert(msg);
}
});
}
Now I won't send any data to the server, I just have a javascript file in which I put my database & functions. So how can I send the data to the sqlite database ?