Skip to content
karankurani edited this page Jan 11, 2012 · 6 revisions

Welcome to the node-vertica wiki!

node-vertica

This is a pure javascript library to connect to a Vertica database.

To install use npm

npm install vertica

Example of a simple query

Vertica = require 'vertica'

connection = Vertica.connect user: "username", password: 'password', database: "database", host: 'localhost', (err) ->
  throw err if err
  
  # unbuffered
  query = connection.query "SELECT * FROM table"
  query.on 'fields', (fields) ->
    console.log("Fields:", fields)

  query.on 'row', (row) ->
    console.log(row)

  query.on 'end', (status) ->
    console.log("Finished!", status)

  # buffered
  connection.query "SELECT * FROM table", (err, resultset) ->
    console.log err, resultset.fields, resultset.rows, resultset.status

Batch Inserts using COPY/LCOPY queries

Note: It does not currently support LCOPY queries but you can use the custom handler method (as detailed below) instead to do batch inserts from any machine.

There are three ways to copy data:

q = "COPY table FROM STDIN ..."

Using a file

Note that the file has to exist locally on the vertica machine that you are connecting to.

connection.copy q, "/path/to/file", -> console.log('done')

Using STDIN

connection.copy q, process.stdin, -> console.log('done')

Using a custom handler

copier = (transfer, success, fail) ->
try 
transfer('some data')
transfer('some more data')
success()
catch e
fail(e.message)

connection.copy q, copier, -> console.log('done')
Clone this wiki locally