gpt4 book ai didi

node.js - 在 node.js 中使用 tedious 时 getaddrinfo ENOTFOUND

转载 作者:搜寻专家 更新时间:2023-10-31 22:43:45 26 4
gpt4 key购买 nike

我正在尝试使用 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();
}
);

最佳答案

"Microsoft style strings of hostname\instancename are not supported." - pekim

我在 github 上发布了同样的问题,这里是完整的答案:https://github.com/pekim/tedious/issues/118

关于node.js - 在 node.js 中使用 tedious 时 getaddrinfo ENOTFOUND,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19657209/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com