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

Popular posts from this blog

minify - Minimizing css files -

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -