Why The Mssql Object Can Not Be Identified?
I am getting below error when using mssql object in script as: var mssql =request.services.mssql; Log entry details ERROR Error in script '/api/apitest.js'. TypeError: Cannot rea
Solution 1:
Your problem seems to be a typo: it's request.service.mssql
, not request.services.mssql
as you have in your question (there's no s at the end of service
). Try using the appropriate property name and you should be able to get to the mssql
object.
Post a Comment for "Why The Mssql Object Can Not Be Identified?"