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

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -