We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0054313 commit 5a1b4dbCopy full SHA for 5a1b4db
test.js
@@ -48,6 +48,7 @@ function testPersistence() {
48
check(db.exec("SELECT * FROM my_table;"), []); // make sure its gone
49
db.close();
50
51
+ // Create a new db with the data we saved from before
52
var db2 = SQL.open(data);
53
check(db2.exec("SELECT * FROM my_table;"), [
54
[{ "column": "a", "value": "1" }, { "column": "b", "value": "987" }, { "column": "c", "value": "some other number" }],
0 commit comments