Flusspferd API and module docs

namespace sqlite3

Description

SQLite3 database bindings. sqlite3.SQLite3 is the main class.

Example:
const SQLite3 = require('sqlite3').SQLite3;
var db = new SQLite3('./my_db.sqlite');
var c = db.cursor('SELECT * FROM table_1 WHERE id IN (?,?)');
c.bind([4,6]);
 for (let row in c) {
 print(row.toSource());
}