我正在尝试使用Tedious连接到本地 SQL Express 服务器,但一直在获取
failed Error: getaddrinfo ENOTFOUND
我在这里使用了错误的地址吗?
var Connection = require('tedious').Connection;
var config = {
userName: 'sa',
password: 'mypassword',
server: 'LOCALHOST\\SQLEXPRESS',
};
var connection = new Connection(config);
connection.on('connect', function(err) {
// If no error, then good to go...
if(err) {
console.log(err);
return;
}
executeStatement();
}
);