Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 245 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 245 Bytes

sqlite2better

  • support use node-sqlite3 api for better-sqlite3

Usage

var Database = require('sqlite2better');
var db = new Database('foobar.db', options);
db.get('SELECT * FROM users WHERE id=?', [userId], (err, row) => {
  
})