node.js - how can I get data from database in mysql in node js without using direct queries? -
I have found out how to use the query with all the example SQL statements, such as: 'connection.query ("select * My_table ", ...) ', but I want to do it without the SQL statement, but with the store process I found something about' DB-MyScall 'which provides this option but I have to install it Not a success. I do not want to use the SQL statement in my code. I want to select, update, etc. the procedures stored in mysqldatabase (like C #). How can I do this?
Checkout is a node-compatible orm that allows you to easily interface with SQL Using SQL Statement
Comments
Post a Comment