Skip to content

Commit 42ba165

Browse files
committed
Update README.md
Typo correction: Line 73: a => col1
1 parent 48356e4 commit 42ba165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The test files provide up to date example of the use of the api.
7070
db.run("INSERT INTO test VALUES (?,?), (?,?)", [1,111,2,222]);
7171
7272
// Prepare a statement
73-
var stmt = db.prepare("SELECT * FROM test WHERE a BETWEEN $start AND $end");
73+
var stmt = db.prepare("SELECT * FROM test WHERE col1 BETWEEN $start AND $end");
7474
stmt.getAsObject({$start:1, $end:1}); // {col1:1, col2:111}
7575
7676
// Bind new values

0 commit comments

Comments
 (0)