1.0.4 • Published 5 years ago

sybase-promised v1.0.4

Weekly downloads
33
License
MIT
Repository
github
Last release
5 years ago

Sybase Promised

A wrapper using the Promise philosophy for the sybase package.

Usage

Install

npm install sybase-promised

Import

const Sybase = require('sybase-promised')

Instantiate an object

const db = new Sybase({
  host: 'locahost',
  port: 2638,
  dbname: 'sybase',
  username: 'root',
  password: '1234',
})

Start the connection

await db.connect()

Execute a query

const rs = await db.query('SELECT * FROM table')

Close the connection

db.disconnect()

Disclaimer

I know the sybase package is long without any updates but it worked for me and I decided to make it easier to use by bringing it to a more current standard used Promises.

Any questions or suggestions for improvement send an email to mscamargo@outlook.com.br or open a issue.

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago