adodb
Version:
Package for executing SQL queries to MS Access databases intended for use on Windows XP and later. In the client-server mode, the client part can be used without restriction of the operating system.
17 lines (12 loc) • 375 B
JavaScript
;
const Connection = require('./connection');
const Pool = require('./pool');
function Adodb() {
this.createConnection = function(connectionString) {
return new Connection(connectionString);
};
this.createPool = function(connectionString) {
return new Pool(connectionString);
};
}
module.exports = new Adodb();