
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A connection pool for node-odbc based on generic-pool.
This is a connection pooling module that creates instances of generic-pool for each connection string that is encountered. Using this pool module gains all the benefits of using the generic-pool module including min and max connections.
npm install odbc-pool
node-odbc-pool does not depend on node-odbc, so you must npm install odbc before
being able to use this module. The reason for this is so that you can install whatever
verion of node-odbc that you want and not have to mess with the version that this
module might depend on.
var pool = require('odbc-pool');
var myPool = new pool({
min : 1
, max : 10
, log : true
});
myPool.open(process.env.ODBC_CONNECTION_STRING, function (err, client) {
console.log(client.querySync('select top 10 * from test'));
client.close(function () {
console.log('closed');
});
});
MIT
FAQs
A connection pool for the ODBC module
The npm package odbc-pool receives a total of 184 weekly downloads. As such, odbc-pool popularity was classified as not popular.
We found that odbc-pool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.