Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/articles/2021/sq_lite_in_the_browser/index.org
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Not wildly exciting data but there there you go.
// Bind new values
stmt.bind({$start:1, $end:2});
while(stmt.step()) { //
var row = stmt.getAsObject();
var row = stmt.getAsObject();
table.innerHTML += `<tr><td>${row['col1']}</td><td>${row['col2']}</td></tr>`;
}
console.log( "Done" );
Expand Down