I'm trying to develop a POC to validate whether the normal ATTACH DATABASE works in PhoneGap app or not. I've written the code for attaching the db but it give me error saying Error processing SQL: 5.
Following is the very basic code of my index.js:
var app = {
initialize: function() {
this.bindEvents();
},
bindEvents: function() {
document.addEventListener('deviceready', this.onDeviceReady, false);
},
onDeviceReady: function() {
app.receivedEvent('deviceready');
},
receivedEvent: function(id) {
masterDB = window.openDatabase("master", "1.0", "Master_DB", 4000000);
childDB = window.openDatabase("child", "1.0", "Child_DB", 4000000);
masterDB.transaction(populateDB, errorCB, function () {} );
childDB.transaction(populateDB, errorCB, function () {} );
masterDB.transaction(attachDatabases, errorCB, function(){ console.log("Database attached"); });
successCB();
}
};
function attachDatabases(tx) {
/*
var location = document.location.href;
location = location.split(' ').join('%20');
var masterDbPath = location.split('index.html').join('db/master.db');
var childDbPath = location.split('index.html').join('db/child.db');
console.log("ChildDB path: " + childDbPath);
*/
tx.executeSql('ATTACH DATABASE ' + childDbPath + ' as dbProject;');
}
function errorCB(err) {
alert("Error processing SQL: "+err.code);
}
function successCB() {
displayRecords();
}
function populateDB(tx) {
tx.executeSql('DROP TABLE IF EXISTS DEMO');
tx.executeSql('CREATE TABLE IF NOT EXISTS DEMO (id unique, data)');
tx.executeSql('INSERT INTO DEMO (id, data) VALUES (1, "First row")');
tx.executeSql('INSERT INTO DEMO (id, data) VALUES (2, "Second row")');
}
function displayRecords() {
masterDB.transaction(queryDB, errorCB);
}
function queryDB(tx) {
console.log("queryDB called");
tx.executeSql('SELECT * FROM DEMO', [], querySuccess, errorCB);
}
function querySuccess(tx, results) {
console.log("Returned rows = " + results.rows.length);
var htmlContent = "";
for(i = 0; i < results.rows.length; i++)
{
htmlContent += results.rows.item(i).id + " | " + results.rows.item(i).data;
htmlContent += "<br />";
}
document.getElementById("deviceready").innerHTML = htmlContent;
}
I'm using PhoneGap 1.4.1 and testing with Xcode 4.5.2 on iOS 6. I have hosted my code on public repository on Github at this link. Feel free to collaborate.
Any help / insight on this is appreciated.
Thanks.