Commit c65cbaf5 by Konstantin Käfer

allow adding options easily

parent b0bdc8e5
......@@ -88,6 +88,15 @@ Statement.prototype.map = function() {
return this.all.apply(this, params);
};
sqlite3.configure = function(options) {
for (var key in options) {
sqlite3[key] = options[key];
}
return this;
};
var isVerbose = false;
// Save the stack trace over EIO callbacks.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment