Ad
How To Use Stored Procedure Is Sequalize Orm
I am using a stack of node, mssql, express for api generation, so how can we use an ORM like sequalize for mssql with stored procedure, is there way to use this or any documentation related to this.
Right now I am using npm mssq with stored procedure
Ad
Answer
Sequelize uses npm package Tedious (https://www.npmjs.com/package/tedious) to work with MS SQL. Connecting to the database is the same as others.
You can use raw query to get results from stored procedures. the answer to your question
Ad
source: stackoverflow.com
Related Questions
- → Maximum call stack exceeded when instantiating class inside of a module
- → Browserify api: how to pass advanced option to script
- → Node.js Passing object from server.js to external modules?
- → gulp-rename makes copies, but does not replace
- → requiring RX.js in node.js
- → Remove an ObjectId from an array of objectId
- → Can not connect to Redis
- → React: How to publish page on server using React-starter-kit
- → Express - better pattern for passing data between middleware functions
- → Can't get plotly + node.js to stream data coming through POST requests
- → IsGenerator implementation
- → Async/Await not waiting
- → (Socket.io on nodejs) Updating div with mysql data stops without showing error
Ad