UNPKG
ifx_db
Version:
latest (6.0.5)
6.0.5
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
4.0.4
4.0.3
4.0.2
1.0.1
1.0.0
IBM Informix bindings for node
github.com/ifxdb/node-ifx_db
ifxdb/node-ifx_db
ifx_db
/
test
/
test-global-open-close.js
12 lines
(8 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var common =
require
(
"./common"
) , odbc =
require
(
"../"
) ,
assert
=
require
(
"assert"
); odbc.
open
(common.connectionString,
function
(err, conn)
{
assert
.equal(err, null);
assert
.equal(conn.constructor.name,
'Database'
); conn.
close
(); });