Nodejs 와 MSSQL 연동하기
npx express-generator npm install npm install mssql const config = { user:"로그인(L)", password:"암호", server:"서버이름", database:"데이터베이스 이름", options:{ trustedconnection: true, enableArithAbort: true, instancename: "", }, //port: }; module.exports = config; const config = { user:"로그인(L)", password:"암호", server:"서버이름", database:"데이터베이스 이름", options:{ trustedconnection: true, enableArithAbort: true, ins..
2022. 11. 16.