javascript - Callback is not function nodejs postgres query -
i running postgres query through pg module in nodejs. want result rows callback. getting error, callback not function. here code.
function search(callback) { pool.query("select * table", function (err, res) { callback(res.rows) }) }
which nodejs module using postgres connection?
Comments
Post a Comment