データベースにテーブルを作成し、「id」と「serverURL」の 2 つの列を持つ「tablename」という名前を付けたとします。ここで、「id」は主キーです。
これを試して:
Iquery = "INSERT INTO 'tableName' VALUES(null, "+serverURL+");";
tx.executeSql(
Iquery,
null,
function(){ /* to do on success, or you may just set it as "null" */},
function(){ /* to do on error, or you may just set it as "null" */});
または、これを試すことができます:
tx.executeSql("INSERT INTO tableName(id, serverURL) VALUES (?,?)",
[null, serverURL], // these are the variables to insert
function(){ /* to do on success, or you may just set it as "null" */},
function(){ /* to do on fail, or you may just set it as "null" */});
詳細については、cordovaの元のドキュメントを参照してください。