Last active
April 2, 2017 21:51
-
-
Save zmts/f62d42e4ac83b8995bf2 to your computer and use it in GitHub Desktop.
sql, postgresql, expressjs, nodejs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.get("/pg", function(req, res) { | |
connection.any("SELECT * FROM people", true) | |
.then(function(data) { | |
res.format({ | |
"application/json": function() { | |
res.status(200).send(data); | |
console.log(data); | |
} | |
}); | |
}) | |
.catch(function(error) { | |
console.log("ERROR:", error); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment