how can i use Asynchronous queries in sqlserver 2005 & asp (not .net)
-
Please support your question with example or any case.Saad Surya– Saad Surya2015-07-06 05:18:56 +00:00Commented Jul 6, 2015 at 5:18
-
Can you tell your exact issue. As this is not possible to call Sql Server query Async. You can't call and take response more than one from sql server to your c# code. Better way is to go with ajax jquery. It will solve your problem. If you will share your issue, we can help you more accurate.shambhu yadav– shambhu yadav2018-05-21 14:09:26 +00:00Commented May 21, 2018 at 14:09
Add a comment
|
2 Answers
You have a good solution for SQL Server asynchronous queries documented with examples, use cases, etc., here:
https://www.cesarzea.com/czAsyncSQLServer
With that solution, that is an asynchronous call:
EXEC st_czAsyncExecInvoke
@sentence = 'exec st_proc1 123'
It lets you more complex calls. Go to the link to see more cases.