UNPKG

quicky.db

Version:

<a href="https://www.buymeacoffee.com/lorencerri" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba

17 lines (14 loc) 355 B
module.exports = function(db, params, options) { // Fetch Entry 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, data: JSON.parse(row.json) }) } catch (e) {} } return resp; }