UNPKG

jdbc

Version:

Node Module JDBC wrapper

13 lines (9 loc) 230 B
/* 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;