-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknex.js
38 lines (36 loc) · 774 Bytes
/
knex.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = class Knex {
/**
* Construct this PG connection instance
* Undefined values may be replaced with defaults
*
* @param host mysql host
* @param user mysql user
* @param database mysql database
* @param password mysql password
*/
constructor(config) {
this.connectionConfig = config;
this.client = null;
}
/**
* Create a pool connection
*
* @param promise Bolean, to forse a promise on the return
*/
connect(searchPath, options) {
this.client = require("knex")({
client: "pg",
connection: this.connectionConfig,
...options,
searchPath: searchPath,
});
return this.client;
}
/**
* Close a pool connection
*
*/
close() {
this.client.destroy();
}
};