File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Use a GaussDB result cursor from node with an easy to use API.
8
8
``` sh
9
9
$ npm install gaussdb-cursor
10
10
```
11
- ___ note___ : this depends on _ either_ ` npm install gaussdb ` or ` npm install gaussdb.js ` , but you __ must__ be using the pure JavaScript client.
11
+ ___ note___ : this depends on _ either_ ` npm install gaussdb-node ` or ` npm install gaussdb.js ` , but you __ must__ be using the pure JavaScript client.
12
12
13
13
### :star : Documentation :star :
14
14
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ A connection pool for gaussdb-node
6
6
7
7
## install
8
8
``` sh
9
- npm i gaussdb-pool gaussdb
9
+ npm i gaussdb-pool gaussdb-node
10
10
```
11
11
12
12
## use
@@ -27,7 +27,7 @@ const pool = new Pool()
27
27
// and the node-pool (https://github.com/coopernurse/node-pool) constructor
28
28
// allowing you to fully configure the behavior of both
29
29
const pool2 = new Pool ({
30
- database: ' gaussdb-node ' ,
30
+ database: ' test_db ' ,
31
31
user: ' tset' ,
32
32
password: ' secret!' ,
33
33
port: 5432 ,
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ Receive result rows from [gaussdb](https://github.com/HuaweiCloudDeveloper/gauss
5
5
## installation
6
6
7
7
``` bash
8
- $ npm install gaussdb --save
8
+ $ npm install gaussdb-node --save
9
9
$ npm install gaussdb-query-stream --save
10
10
```
11
11
12
- _ requires gaussdb>=2.8 .1_
12
+ _ requires gaussdb-node>=0.2 .1_
13
13
14
14
## use
15
15
You can’t perform that action at this time.
0 commit comments