node-sqlite3
https://github.com/mapbox/node-sqlite3
Asynchronous, non-blocking SQLite3 bindings for Node.js
非同期でノンブロッキングなNode用SQLite3バインディング
code:example.js
var sqlite3 = require('sqlite3').verbose();
verbose()
は何?
https://github.com/mapbox/node-sqlite3/blob/master/lib/sqlite3.js#L156
スタックトレースが詳細になるようにしている?
https://github.com/mapbox/node-sqlite3/wiki/API#sqlite3verbose
スタックトレースをたくさん出すために実行モードを詳細(
verbose
)モードに設定する
https://github.com/mapbox/node-sqlite3/wiki/Debugging
API
Main
Database
Statement
#SQLite
#Node.js