node-postgres/lib/defaults.js
Alexander Sulfrian f8962fd036 connection can be binary by default
if connection is created with config.binary = true, all queries get
executed with binary result unless explicit disabled with binary = false
2011-11-22 04:53:38 +01:00

21 lines
540 B
JavaScript

module.exports = {
//database user's name
user: process.env.USER,
//name of database to connect
database: process.env.USER,
//database user's password
password: null,
//database port
port: 5432,
//number of rows to return at a time from a prepared statement's
//portal. 0 will return all rows at once
rows: 0,
//number of connections to use in connection pool
//0 will disable connection pooling
poolSize: 10,
//duration of node-pool timeout
poolIdleTimeout: 30000,
// binary result mode
binary: false
}