Я пытаюсь подключиться к моей только что созданной базе данных MS SQL.Тем не менее, я получаю сообщение об ошибке при попытке подключения.Ошибка: невозможно подключиться к базе данных: {SequelizeConnectionError: не удалось подключиться к ....
const sequelize =new Sequelize({
dialect: 'mssql',
dialectModulePath: 'tedious',
dialectOptions: {
driver: '**SQL Server Native Client 11.0 - is this correct?**',
instanceName: '**where do i get this?**'
},
host: '**what do i put for this?'is this the end point?**',
port: '1433',
username: 'username',
password: 'password,
database: '**what do i put for this?**',
pool: {
min: 0,
max: 10,
idle: 10000
}
});