Skip to content

Commit 2ae9309

Browse files
committed
[Connection.js] Add odbc transport
1 parent 7956a15 commit 2ae9309

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/Connection.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ const {
2323
const { iRestHttp } = require('./transports/irest');
2424
const { db2Call } = require('./transports/istoredp');
2525
const { sshCall } = require('./transports/sshTransport');
26+
const { odbcCall } = require('./transports/odbcTransport');
2627

2728
const availableTransports = {
2829
idb: db2Call,
2930
rest: iRestHttp,
3031
ssh: sshCall,
32+
odbc: odbcCall,
3133
};
3234

3335
class Connection {

0 commit comments

Comments
 (0)