From c65371c7a030ccca2b1ba41203d1a97608fa39d6 Mon Sep 17 00:00:00 2001 From: pomke Date: Sat, 31 Mar 2012 06:37:46 -0700 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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