Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Multiple instance of OLE DB support

Compare
Choose a tag to compare
@mike-eason mike-eason released this 11 Jan 15:42

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.