Node.js sybase driver

I am developing an application using the node.js express framework and you will need to connect to the sybase ASE database. I did enough searching and could not find the sybase driver for node.js. doesn't support node.js sybase or should use something like a generic driver?

+5
source share
4 answers

An exhaustive list of database drivers can be found in wiki node.js:

https://github.com/joyent/node/wiki/Modules#wiki-database

But there is no Sybase, so it should use the ODBC driver, which, if on *nix, you have the option:

https://github.com/w1nk/node-odbc

Sybase ASE -, SQL SOAP API. , SOAP- node API, , node-soap.

+5

node.js .

DB node.js. cummunity , . mysql node-mysql.

, , googeling node.js.

sybase ASE, node -mysql, startet. -.

0

As of 2015, a non-odbc implementation based on Jconnect is available. This requires Java.

You can install it with

npm install sybase

Additional information: https://www.npmjs.com/package/sybase

0
source

All Articles