SQL Server connection string Asynchronous Processing=true

前端 未结 5 2043
青春惊慌失措
青春惊慌失措 2020-12-15 08:10

I am using .Net 2.0 + SQL Server 2005 Enterprise + VSTS 2008 + C# + ADO.Net to develop ASP.Net Web application.

My question is, if I am using Asynchronous Proc

5条回答
  •  独厮守ぢ
    2020-12-15 08:53

    Just having the Asynchronous Processing=True in your connection string just simply enables you to write asynchronous queries - I don't see how having that setting in your connection string should affect your performance, if you don't change anything else.

    You will hopefully begin to see a positive effect on your performance when you start doing asynchronous processing of your database queries. But just specifying that one option shouldn't have any (positive or negative) impact on your app.

    Marc

提交回复
热议问题