UNPKG
informixdb
Version:
latest (2.2.1)
2.2.1
2.2.0
2.1.0
1.1.0
1.0.0
Informix native node.js driver
github.com/OpenInformix/node-informixdb
informixdb
/
test
/
test-instantiate-one-and-end.js
9 lines
(7 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
odbc =
require
(
"../"
) , db =
new
odbc.
Database
() ;
//This test should just exit. The only reason it should stay open is if a
//connection has been established. But all we have done here is instantiate
//the object.
console
.
log
(
"done"
);