node-odbc
node-odbc copied to clipboard
V2.0
Final push before releasing odbc v2.0.
- Changed the method of creating new
Connections andPools. Instead of callingnewwith a constructor, useodbc.connectandodbc.poolinstead:- Old:
const connection = new Connection(connectionString) - New:
const connection = await odbc.connect/pool(connectionString)orodbc.connect/pool((error, connection) =>
- Old:
- Continued to add configuration options to pools and connections
- Used valgrind to do tests for memory leaks. All memory leaks fixed.