1

I have found plenty of info on async queries for SQL Server, but I can't find anything on synchronous. The app was much simpler and ran much smoother when I was using MySQL and could perform sync queries. However it is required that I switch to SQL Server.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Tyler
  • 191
  • 1
  • 6

1 Answers1

0

So there is nothing wrong in your use case to use nested callback program structure in node js to achieve sync queries. This answer clearly shows that nesting callbacks depending on the use case doesn't end up in the bad category

Vaibhav
  • 1,481
  • 13
  • 17
  • The answer you are referring to is for MySql. I am asking about MSSQL. Passing sync query in MySql is easy. – Tyler Oct 29 '18 at 22:08