1.3.3 • Published 4 years ago

ciapetro-sybase v1.3.3

Weekly downloads
9
License
MIT
Repository
github
Last release
4 years ago

node-sybase

A simple node.js wrapper around a Java application that provides easy access to Sybase databases via jconn4. The main goal is to allow easy installation without the requirements of installing and configuring odbc or freetds. You do however have to have java 13 or newer installed.

requirements

  • java 13+

install

git

git clone git://github.com/ciapetro/node-sybase.git
cd node-sybase
node-gyp configure build

npm

npm install ciapetro-sybase

Examples

Connect

const Sybase = require('ciapetro-sybase'),
    db = new Sybase('host', port, 'dbName', 'username', 'pw');

try {
    await db.connect();
} catch (error) {
    console.error(error);
}

Disconnect

const Sybase = require('ciapetro-sybase'),
    db = new Sybase('host', port, 'dbName', 'username', 'pw', 'pathToJavaBridge (optional)', logQuerys);

try {
    await db.connect();
    db.disconnect();
} catch (error) {
    console.error(error);
}

Query Async

const Sybase = require('ciapetro-sybase'),
    db = new Sybase('host', port, 'dbName', 'username', 'pw');

try {
    await db.connect();
    const users = await db.queryAsync('select * from user where user_id = 42');
    // You can pass a timeout in miliseconds to query be executed if timeout is expired will throw a error
    const users2 = await db.queryAsync('select * from user where user_id = 42', 1000);
} catch (error) {
    console.error(error);
}

Query Callback

const Sybase = require('sybase'),
    db = new Sybase('host', port, 'dbName', 'username', 'pw');

try {
    await db.connect();
    db.query('select * from user where user_id = 42', function (err, data) {
        if (err) console.log(err);

        console.log(data);

        db.disconnect();
    });
    // You can pass timeout too
    db.query(
        'select * from user where user_id = 42',
        function (err, data) {
            if (err) console.log(err);

            console.log(data);

            db.disconnect();
        },
        1000,
    );
} catch (error) {
    console.error(error);
}

Check Connected

const Sybase = require('sybase'),
    db = new Sybase('host', port, 'dbName', 'username', 'pw');

try {
    console.log(db.isConnected); // false
    await db.connect();
    console.log(db.isConnected); // true
} catch (error) {
    console.error(error);
}

api

The api is super simple. It makes use of standard node callbacks or promises. The only thing not covered in the example above is the option to print some timing stats to the console as well as to specify the location of the Java application bridge, which shouldn't need to change.

const logTiming = true,
	javaJarPath = './JavaSybaseLink/dist/JavaSybaseLink.jar',
	db = new Sybase('host', port, 'dbName', 'username', 'pw', logTiming, javaJarPath);

The java Bridge now optionally looks for a "sybaseConfig.properties" file in which you can configure jconnect properties to be included in the connection. This should allow setting properties like:

ENCRYPT_PASSWORD=true
1.3.3

4 years ago

1.3.2

4 years ago

1.3.1

4 years ago

1.2.9

4 years ago

1.3.0

4 years ago

1.2.8

4 years ago

1.2.7

4 years ago

1.2.6

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago