This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Connection = require("tedious").Connection; | |
var Request = require("tedious").Request; | |
var ConnectionPool = require("tedious-connection-pool"); | |
// Avoiding concurrent SQL SERVER calls | |
var poolConfig = { | |
min: 1, | |
max: 1, | |
log: true | |
}; |