This repository has been archived by the owner on Mar 3, 2022. It is now read-only.
Multiple instance of OLE DB support
It's now possible to have more than one instance of an oledb
, for example:
const oledb = require('oledb');
const db1 = oledb('my connection string');
const db2 = oledb('my other connection string');
This enables connections to multiple databases within the application.