0

我可以用 SQL Server Management Studio 很好地连接,但不能用 Node.js 连接。

我正在使用mssqlnpm 包。

这是节点连接。

db: {
    server: "123.456.789.255\\WEBSQL",
    database: "db_name",
    user: "user",
    password: "pass"
}

我收到一个ETIMEOUT错误。

ConnectionError: Failed to connect to 123.456.789.255\\WEBSQL in 15000ms

谁能指出我正确的方向?

4

1 回答 1

0

添加这个解决了这个问题。

options: {
    encrypt: false,
},
于 2020-12-02T21:15:16.950 回答