Updated FAQ (markdown)

mltucker 2013-02-27 13:35:30 -08:00
parent a70f356264
commit da741f0c13

4
FAQ.md

@ -149,4 +149,6 @@ client.query("SELECT * FROM stooges WHERE name IN ("+placeholders+")", stooge_na
If you have other values and placeholders in your query you'll need to use a different `offset` value for the array placeholders. See [#129](https://github.com/brianc/node-postgres/issues/129) and [#82](https://github.com/brianc/node-postgres/issues/82) for extra discussion.
### 12. Why does node-postgres come with two bindings? One in Javascript and one "native" that uses libpq? Which one is fastest and why isn't a single binding enough?
### 12. Why does node-postgres come with two bindings? One in Javascript and one "native" that uses libpq? Which one is fastest and why isn't a single binding enough?
### 13. What happens to open transactions when `pg.connect`'s `done` is called?