diff --git a/FAQ.md b/FAQ.md index 40b44ce..b9a8cbb 100644 --- a/FAQ.md +++ b/FAQ.md @@ -113,4 +113,7 @@ Absolutely! The parameterized query support in node-postgres is first class. All client.query("INSERT INTO user(name) VALUES($1)", ["'; DROP TABLE user;"], function (err, result) { // ... }); -``` \ No newline at end of file +``` + + +### 9. Can I create a named prepared statement for use later on without performing a query? If not, does passing the same text again to a named statement get ignored and the cached version used? I don't want to have two codepaths in a function, one for first-use and one for every other. \ No newline at end of file