mirror of
https://github.com/github/codeql.git
synced 2026-05-01 19:55:15 +02:00
add better-sqlite3 tests
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
const db = require('better-sqlite3')('BetterSqlite.db', { verbose: console.log });
|
||||
|
||||
const sql = 'SELECT name, id FROM table1'
|
||||
const stmt = db.prepare(sql);
|
||||
let exec = db.exec(sql);
|
||||
exec.prepare(sql)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user