UNPKG
@cubejs-backend/jdbc
Version:
latest (0.8.1)
0.8.1
0.8.0
0.7.6
0.7.6-1
Node Module JDBC wrapper
github.com/cube-js/node-jdbc
cube-js/node-jdbc
@cubejs-backend/jdbc
/
lib
/
jdbc.js
13 lines
(9 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/* jshint node: true */
"use strict"
;
var
Pool
=
require
(
"./pool"
);
function
JDBC
(
config
) {
Pool
.
call
(
this
, config); }
JDBC
.
prototype
=
Object
.
create
(
Pool
.
prototype
);
JDBC
.
prototype
.
constructor
=
JDBC
;
module
.
exports
=
JDBC
;