0.2.2 • Published 9 months ago

intersystems-iris v0.2.2

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

intersystems-iris

NodeJS Support for InterSystems IRIS. At the moment only SQL queries supported.

Installing intersystems-iris

Installing intersystems-iris requires a node 14

You can install the project with npm. In the project directory, run:

npm install intersystems-iris

This fully installs the project, including installing any dependencies.

Exploring intersystems-iris

After building intersystems-iris, you can explore its exports at the Node REPL:

$ npm install intersystems-iris
const { IRIS } = require("intersystems-iris");

async function main() {
    const db = new IRIS('localhost', 1972, 'USER', '_SYSTEM', 'SYS')
    console.log('connected')
    let res = await db.sql("select 1 one, 2 two")
    console.log(res.rows);
    await db.close()
}

main()
0.2.1

9 months ago

0.2.0

9 months ago

0.2.2

9 months ago

0.1.0

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.3

2 years ago

0.0.1

3 years ago