Skip to content

Commit d5d8f75

Browse files
authored
Developer documentation update (vertica#65)
* Updates to repository readme * More updates to repository readme * Added doc examples file and updating readmes * added usage examples and moved to read me code blocks * Final updates to documentation before review * Added contributing.md and fixed links * Added development status to contributing page
1 parent 2f6a881 commit d5d8f75

File tree

4 files changed

+592
-96
lines changed

4 files changed

+592
-96
lines changed

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This page is currently still under development...

README.md

+49-41
Original file line numberDiff line numberDiff line change
@@ -5,74 +5,82 @@
55
[![NPM downloads](https://img.shields.io/npm/dm/vertica-nodejs)](https://www.npmjs.com/package/vertica-nodejs)
66
[![test status](https://github.com/vertica/vertica-nodejs/actions/workflows/ci.yml/badge.svg)](https://github.com/vertica/vertica-nodejs/actions/workflows/ci.yml)
77

8-
Non-blocking Vertica client for Node.js. Pure JavaScript and optional native libpq bindings.
8+
Non-blocking Vertica client for Node.js made with pure Javascript.
99

10-
## DISCLAIMER:
11-
vertica-nodejs is still pre-release and actively being improved. As of 5/5/22 this is not intended for use in production environments.
12-
13-
## Monorepo
14-
15-
This repo is a monorepo which contains the core [vertica-nodejs](https://github.com/vertica/vertica-nodejs/tree/master/packages/vertica-nodejs) module as well as a handful of related modules.
10+
## Documentation
1611

12+
This monorepo contains the core vertica-nodejs module as well as a handful of related modules. Each individual package should have its own documentation with more specific information designed to help develop with the full capabilities of the driver.
1713
- [vertica-nodejs](https://github.com/vertica/vertica-nodejs/tree/master/packages/vertica-nodejs)
1814
- [v-pool](https://github.com/vertica/vertica-nodejs/tree/master/packages/v-pool)
1915
- [v-connection-string](https://github.com/vertica/vertica-nodejs/tree/master/packages/v-connection-string)
2016
- [v-protocol](https://github.com/vertica/vertica-nodejs/tree/master/packages/v-protocol)
2117

22-
<!--
23-
## Documentation
24-
25-
Each package in this repo should have its own readme more focused on how to develop/contribute. For more information on how to contribute, check out our [contributing guidelines](#contributing-guidelines).-->
18+
## Features
2619

27-
<!-- ## Installation
28-
To install vertica-nodejs with npm: ``` TO DO ```
20+
- Pure JavaScript client
21+
- Connection pooling
22+
- Extensible JS ↔ Vertica data-type coercion
2923

30-
To use vertica-nodejs linked locally from source (not recommended in production): ``` TO DO - Take notes from http://confluence.verticacorp.com/display/DEV/Node.js+Development+Resources```
24+
## Contributing
3125

32-
-->
26+
We will gladly accept external pull requests if they are well documented and contain tests.
27+
For more information on how to contribute, check out our [contributing guidelines](https://github.com/vertica/vertica-nodejs/blob/master/CONTRIBUTING.md)
3328

34-
## Vertica Data Types
29+
## Installation
30+
To install vertica-nodejs with npm:
31+
`npm install vertica-nodejs`
3532

36-
See [DATATYPES.md](https://github.com/vertica/vertica-nodejs/blob/master/DATATYPES.md) to view the mappings from type IDs to Vertica data types.
33+
## Post Installation Setup
3734

38-
### Features
35+
The current version of the driver is routinely tested against Node v14. It is recommended to install this version of node in your application environment.
3936

40-
- Pure JavaScript client and native libpq bindings share _the same API_
41-
- Connection pooling
42-
- Extensible JS ↔ Vertica data-type coercion
43-
<!-- - Supported Vertica features -->
44-
<!-- - Async notifications with `LISTEN/NOTIFY` verifiy this -->
45-
<!-- - Bulk import & export with `COPY TO/COPY FROM` not part of the MVP -->
37+
Ensure that you have an active Vertica server.
4638

47-
## Support
39+
Ensure that the applicable environment variables are configured for connecting to your Vertica server. These are the variables and the default values used if not set:
4840

49-
vertica-nodejs is free software. If you encounter a bug with the library please open an issue on the [GitHub repo](https://github.com/vertica/vertica-nodejs). If you have questions unanswered by the documentation please open an issue pointing out how the documentation was unclear and we will address it as needed.
41+
- V_HOST: 'localhost'
42+
- V_PORT: 5433
43+
- V_USER: process.env.USER/USERNAME
44+
- V_PASSWORD: null
45+
- V_DATABASE: ''
46+
- V_BACKUP_SERVER_NODE: ''
5047

51-
When you open an issue please provide:
48+
Once these are done, you should be able to run the examples found in the examples directory noted in the next section. Simply download or copy the example javascript file(s) and execute them in a node environment.
49+
50+
For example, to execute the basic.js file all you need to do is run `node basic.js`
5251

53-
- version of Node
54-
- version of Vertica
55-
- smallest possible snippet of code to reproduce the problem
52+
<!-- Once we have an example for testing your configured environment, make note of that here instead of using the basic.js example. -->
5653

5754
## Examples
5855

59-
See the [examples directory](https://github.com/vertica/vertica-nodejs/tree/master/examples) for sample applications showing how to use the vertica-nodejs client driver.
56+
See the [examples directory](https://github.com/vertica/vertica-nodejs/tree/master/examples) for sample applications showing how to use the vertica-nodejs client driver. Other usage examples can be found in the documentation of each individual package.
6057

61-
<!--
62-
## Contributing
58+
## Vertica Data Types
6359

64-
Outside contributions to this project are greatly appreciated. Following standard Vertica open source practices, please see [CONTRIBUTING.md](CONTRIBUTING.md)
65-
-->
60+
See [DATATYPES.md](https://github.com/vertica/vertica-nodejs/blob/master/DATATYPES.md) to view the mappings from type IDs to Vertica data types.
61+
62+
## Setting up for local driver development
6663

67-
## Setting up for local development
64+
The following instructions are for working with the driver source code. Follow this set up if you intend to contribute to the driver. These steps are similar to those for developing with the driver, but include steps for building and testing locally.
6865

6966
1. Clone the repo
70-
2. From your workspace root run `yarn` and then `yarn lerna bootstrap`
71-
3. Ensure you have a Vertica instance running with
72-
4. Ensure you have the proper environment variables configured for connecting to the instance (`V_HOST`, `V_PORT`, `V_USER`, `V_PASSWORD`, `V_DATABASE`, `V_BACKUP_SERVER_NODE`)
73-
5. Run `yarn test` to run all the tests, or run `yarn test` from within an individual package to only run that package's tests
67+
2. If yarn is not already installed, install yarn `npm install -g yarn`
68+
3. From your workspace root run `yarn` and then `yarn lerna bootstrap`
69+
4. Ensure you have a Vertica instance running with
70+
5. Ensure you have the proper environment variables configured for connecting to the instance (`V_HOST`, `V_PORT`, `V_USER`, `V_PASSWORD`, `V_DATABASE`, `V_BACKUP_SERVER_NODE`)
71+
6. Run `yarn test` to run all the tests, or run `yarn test` from within an individual package to only run that package's tests
72+
73+
If using VS Code, you can install the `Remote - Containers` extension and it will use the configuration under the `.devcontainer` folder to automatically create dev containers, including Vertica. See [here](https://code.visualstudio.com/docs/remote/containers) for more information on developing in containers using VS Code. This process will complete steps 3 to 5 above.
74+
75+
## Support
76+
77+
vertica-nodejs is free software. If you encounter a bug with the library please open an issue on the [GitHub repo](https://github.com/vertica/vertica-nodejs). If you have questions unanswered by the documentation please open an issue pointing out how the documentation was unclear and we will address it as needed.
78+
79+
When you open an issue please provide:
7480

75-
If using VS Code, you can install the `Remote - Containers` extension and it will use the configuration under the `.devcontainer` folder to automatically create dev containers, including Vertica. See [here](https://code.visualstudio.com/docs/remote/containers) for more information on developing in containers using VS Code. This process will complete steps 2 to 4 above.
81+
- version of Node
82+
- version of Vertica
83+
- smallest possible snippet of code to reproduce the problem
7684

7785
## Troubleshooting and FAQ
7886

examples/doc-examples.js

+229
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,229 @@
1+
// Copyright (c) 2022 Micro Focus or one of its affiliates.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
const {Pool, Client} = require('vertica-nodejs')
16+
17+
/**
18+
* Connection Examples
19+
**/
20+
21+
function connection() {
22+
const client = new Client()
23+
24+
client.connect()
25+
client.query("SELECT 'success' as connection", (err, res) => {
26+
console.log(err || res.rows[0])
27+
client.end()
28+
})
29+
}
30+
31+
function connectionPool() {
32+
const pool = new Pool()
33+
34+
pool.query("SELECT 'success' as connectionPool", (err, res) => {
35+
console.log(err || res.rows[0])
36+
pool.end()
37+
})
38+
}
39+
40+
async function asyncConnection() {
41+
const client = new Client()
42+
43+
await client.connect()
44+
const res = await client.query("SELECT 'success' as asyncConnection")
45+
console.log(res.rows[0])
46+
await client.end()
47+
}
48+
49+
async function asyncConnectionPool() {
50+
const pool = new Pool()
51+
52+
const res = await pool.query("SELECT 'success' as asyncConnectionPool")
53+
console.log(res.rows[0])
54+
await pool.end()
55+
}
56+
57+
function connectionWithConfig() {
58+
const client = new Client({
59+
user: process.env['V_USER'],
60+
host: process.env['V_HOST'],
61+
database: process.env['V_DATABASE'],
62+
password: process.env['V_PASSWORD'],
63+
port: process.env['V_PORT'],
64+
})
65+
66+
client.connect()
67+
client.query("SELECT 'success' as connectionWithConfig", (err, res) => {
68+
console.log(err || res.rows[0])
69+
client.end()
70+
})
71+
}
72+
73+
function connectionPoolWithConfig() {
74+
const pool = new Pool({
75+
user: process.env['V_USER'],
76+
host: process.env['V_HOST'],
77+
database: process.env['V_DATABASE'],
78+
password: process.env['V_PASSWORD'],
79+
port: process.env['V_PORT'],
80+
})
81+
82+
pool.query("SELECT 'success' as connectionPoolWithConfig", (err, res) => {
83+
console.log(err || res.rows[0])
84+
pool.end()
85+
})
86+
}
87+
88+
function connectionWithString() {
89+
const connectionString = 'vertica://'
90+
+ process.env['V_USER'] + ':'
91+
+ process.env['V_PASSWORD'] + '@'
92+
+ process.env['V_HOST'] + ':'
93+
+ process.env['V_PORT'] + '/'
94+
+ process.env['V_DATABASE']
95+
const client = new Client({
96+
connectionString,
97+
})
98+
client.connect()
99+
client.query("SELECT 'success' as connectionWithString", (err, res) => {
100+
console.log(err || res.rows[0])
101+
client.end()
102+
})
103+
}
104+
105+
function connectionPoolWithString() {
106+
const connectionString = 'vertica://'
107+
+ process.env['V_USER'] + ':'
108+
+ process.env['V_PASSWORD'] + '@'
109+
+ process.env['V_HOST'] + ':'
110+
+ process.env['V_PORT'] + '/'
111+
+ process.env['V_DATABASE']
112+
const pool = new Pool({
113+
connectionString,
114+
})
115+
pool.query("SELECT 'success' as connectionPoolWithString", (err, res) => {
116+
console.log(err || res.rows[0])
117+
pool.end()
118+
})
119+
}
120+
121+
connection()
122+
connectionPool()
123+
asyncConnection()
124+
asyncConnectionPool()
125+
connectionWithConfig()
126+
connectionPoolWithConfig()
127+
connectionWithString()
128+
connectionPoolWithString()
129+
130+
/**
131+
* Query and Results Examples
132+
**/
133+
134+
function simpleQuery(){
135+
const client = new Client()
136+
137+
client.connect()
138+
client.query("CREATE LOCAL TEMP TABLE users(id int, name varchar)", (err, res) => {
139+
if (err) console.log(err)
140+
client.query("INSERT INTO users VALUES (1, 'John')", (err, res) => {
141+
if (err) console.log(err)
142+
client.query("SELECT * FROM users", (err, res) => {
143+
console.log(err || res.rows)
144+
client.end()
145+
})
146+
})
147+
})
148+
}
149+
150+
function parameterizedQuery() {
151+
const client = new Client()
152+
153+
client.connect()
154+
client.query("CREATE LOCAL TEMP TABLE users(id int, name varchar)")
155+
client.query("INSERT INTO users VALUES (1, 'John')")
156+
client.query("INSERT INTO users VALUES (2, 'Jane')")
157+
const queryString = "SELECT * FROM users where id > ?"
158+
const valueArray = [1]
159+
client.query(queryString, valueArray, (err, res) => {
160+
console.log(err || res.rows)
161+
client.end()
162+
})
163+
}
164+
165+
function preparedStatement() {
166+
const client = new Client()
167+
168+
client.connect()
169+
client.query("CREATE LOCAL TEMP TABLE users(id int, name varchar)")
170+
client.query("INSERT INTO users VALUES (1, 'John')")
171+
client.query("INSERT INTO users VALUES (2, 'Jane')")
172+
const queryName = "selectById"
173+
const queryString = "SELECT * FROM users where id > ?"
174+
let valueArray = [0]
175+
client.query({name: queryName, text: queryString, values: valueArray}, (err, res) => {
176+
console.log(err || res.rows)
177+
valueArray = [1]
178+
// now we have prepared a named query to use instead of needing the query string
179+
client.query({name: queryName, values: valueArray}, (err, res) => {
180+
console.log(err || res.rows)
181+
client.end()
182+
})
183+
})
184+
}
185+
186+
function arrayRowModeQuery() {
187+
const client = new Client()
188+
189+
client.connect()
190+
client.query("CREATE LOCAL TEMP TABLE users(id int, name varchar)")
191+
client.query("INSERT INTO users VALUES (1, 'John')")
192+
client.query("INSERT INTO users VALUES (2, 'Jane')")
193+
client.query({text: "SElECT * FROM users", rowMode: 'array'}, (err, res) => {
194+
console.log(err || res.rows) // [ [1, 'John'], [2, 'Jane'] ]
195+
client.end()
196+
})
197+
}
198+
199+
function customTypeParser() {
200+
const client = new Client()
201+
202+
client.connect()
203+
client.query("CREATE LOCAL TEMP TABLE users(id int, name varchar)")
204+
client.query("INSERT INTO users VALUES (1, 'John')")
205+
client.query("INSERT INTO users VALUES (2, 'Jane')")
206+
const query = {
207+
// integer and varchar columns returned
208+
text: "SELECT * FROM USERS",
209+
// leave values untouched from server when parsing, result is all strings instead of integer and string
210+
types: {
211+
getTypeParser: () => val => val,
212+
},
213+
}
214+
client.query(query, (err, res) => {
215+
console.log(err || res.rows)
216+
client.end()
217+
})
218+
}
219+
220+
simpleQuery()
221+
parameterizedQuery()
222+
preparedStatement()
223+
arrayRowModeQuery()
224+
customTypeParser()
225+
226+
/**
227+
* TLS and other connection Properties Examples
228+
*/
229+

0 commit comments

Comments
 (0)