Updated FAQ (markdown)

brianc 2011-05-26 12:28:53 -07:00
parent 6e6c7c257d
commit 63e7ada35d

1
FAQ.md

@ -35,6 +35,7 @@ Not currently. It would be helpful to access the column values by column name o
pg.query(..., function(err, result) {
var columnCount = Object.keys(result.rows[0]).length;
});
```
### 5. If pg returns query data in JSON format, for web serivce applications, it would make sense to return that directly to the client. If this assumption is correct what is the most efficient method? ###
```js