我正在使用KnexJs尝试连接到本地Microsoft SQL Server Express。但是,使用以下配置,我收到一个错误。我遵循了典型的步骤,但我仍然得到错误。
我尝试了什么:
配置/查询代码:
let mssql = knex({
client: 'mssql',
connection: {
host: 'localhost\\sqlexpress',
user: 'test',
password: 'test',
database: 'AdventureWorks2017',
// port:1433,
// options: {
// trustedConnection: true
// },
useNullAsDefault: true
}
});
mssql.raw('select 1 as result').then(function (result) {
console.log('result');
console.log(result);
mainWindow.webContents.send('testConnectionResponse', result === 1);
event.sender.send('testConnectionResponse', result === 1);
}).catch(function (err) {
console.log(err);
mainWindow.webContents.send('query-error', err);
}).finally(() => {
mssql.destroy();
});
错误:
ConnectionError:无法连接到localhost:在15000ms中未定义
答案 0 :(得分:1)
事实证明,我还需要启用SQL Server Browser Windows服务,如下所示:
成功!