UNPKG

coders.db

Version:

A better sqlite3 system that is easy to install and easy to use, easy to config, non-locking. Made in coders code (https://discord.gg/cxJbCaqBPu)

16 lines (13 loc) 325 B
module.exports = function(db, params, options) { var stmt = db.prepare(`SELECT * FROM ${options.table} WHERE ID IS NOT NULL`); let resp = []; for (var row of stmt.iterate()) { try { resp.push({ ID: row.ID, dataName: JSON.parse(row.json) }) } catch (e) {} } return resp; };