Skip to content

Commit afefc54

Browse files
authored
Merge pull request #14 from happy-game/master
docs(readme): Update README
2 parents b5fc9e5 + 118da68 commit afefc54

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/gaussdb-cursor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Use a GaussDB result cursor from node with an easy to use API.
88
```sh
99
$ npm install gaussdb-cursor
1010
```
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.
1212

1313
### :star: Documentation :star:
1414

packages/gaussdb-pool/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A connection pool for gaussdb-node
66

77
## install
88
```sh
9-
npm i gaussdb-pool gaussdb
9+
npm i gaussdb-pool gaussdb-node
1010
```
1111

1212
## use
@@ -27,7 +27,7 @@ const pool = new Pool()
2727
// and the node-pool (https://github.com/coopernurse/node-pool) constructor
2828
// allowing you to fully configure the behavior of both
2929
const pool2 = new Pool({
30-
database: 'gaussdb-node',
30+
database: 'test_db',
3131
user: 'tset',
3232
password: 'secret!',
3333
port: 5432,

packages/gaussdb-query-stream/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Receive result rows from [gaussdb](https://github.com/HuaweiCloudDeveloper/gauss
55
## installation
66

77
```bash
8-
$ npm install gaussdb --save
8+
$ npm install gaussdb-node --save
99
$ npm install gaussdb-query-stream --save
1010
```
1111

12-
_requires gaussdb>=2.8.1_
12+
_requires gaussdb-node>=0.2.1_
1313

1414
## use
1515

0 commit comments

Comments
 (0)