2.0.2 • Published 10 years ago

db-nuodb v2.0.2

Weekly downloads
1
License
-
Repository
-
Last release
10 years ago

NuoDB - node.js

Build Status

This module builds a native Google V8 C++ binding to let you easily integrate your node.js web applications with NuoDB.

Requirements

make
g++

Install

$ npm install db-nuodb

Example

var nuodb = require('db-nuodb');
new nuodb.Database({
    hostname: 'localhost',
    user: 'root',
    password: 'password',
    database: 'node'
}).connect(function(error) {
    if (error) {
        return console.log("CONNECTION ERROR: " + error);
    }

    this.query().select('*').from('users').execute(function(error, rows) {
        if (error) {
            return console.log('ERROR: ' + error);
        }
        console.log(rows.length + ' ROWS');
    });
});

License

NuoDB License

githalytics.com alpha

2.0.4

9 years ago

2.0.2

10 years ago

2.0.1

10 years ago

2.0.0

11 years ago

1.0.9

11 years ago

1.0.8

11 years ago

1.0.7

11 years ago

1.0.6

11 years ago

1.0.5

11 years ago

1.0.4

11 years ago

1.0.3

11 years ago

1.0.2

11 years ago

1.0.1

11 years ago