Query with Connection Object

suggest change

If you want to use connection object for query database you can use this sample code.

var queryString = "SELECT name, age FROM students " ;
var query = client.query(queryString);

query.on("row", (row, result)=> {
result.addRow(row);
});

query.on("end", function (result) {
//LOGIC
});

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


PostgreSQL integration:
* Query with Connection Object

Table Of Contents
1 npm
41 cli
43 grunt
59 Hack
64 ES6
67 Redis
69 MongoDB
75 PostgreSQL integration
86 MongoDB
87 Lodash
91 CORS
105 N-API
108 Require