Fix database for Android 1.x devices. It now behaves like HTML5 database API.

This commit is contained in:
Bryce Curtis
2010-10-12 15:53:57 -05:00
parent 5164464d28
commit 032db387f8
4 changed files with 236 additions and 76 deletions
+3 -1
View File
@@ -316,7 +316,9 @@ PhoneGap.stringify = function(args) {
s = s + '}';
}
else {
s = s + '"' + args[i] + '"';
var a = args[i].replace(/\\/g, '\\\\');
a = a.replace(/"/g, '\\"');
s = s + '"' + a + '"';
}
}
s = s + "]";