How bad is opening and closing a SQL connection for several times? What is the exact effect?

北慕城南 提交于 2019-12-01 08:38:43

ADO.NET has connection pooling, e.g. when you close a connection, it's not really completely closed, but "recycled" if you ask for a new connection with exactly the same connection string.

Nevertheless - if you already know ahead of time that you'll have to call these five Fill methods one by one, I would definitely recommend

  • opening the connection
  • reading all five data tables from the database
  • closing the connection again right away

It's accepted best practice to do it this way, it doesn't hurt you - so just do it! :-)

Marc

PS: Connection pooling in ADO.NET of course only works if you haven't turned it off ! :-) It's on by default - you'd have to explicitly disable it.

Key Point:

  • Why open, keep and reuse connections?

    Performance

There are many reasons that you may want to open and close connections. You have to decide where the best trade-off is for your use. You can do both: use an open connection for a period of time and/or a set number of transactions, then close it and open a new one.

Opening and closing SQL connections is expensive when compared to other simple tasks in the database. But, if your actual task is already time consuming, the extra overhead may not be noticed (if you are already hiding the wait period of the actual task - so the user does not start randomly clicking things - like retry).

Test Case:

You can measure your difference by writing two versions of a test query. Select any simple SQL task (needs to be the same in each version).

In version one, do it with a single constant open connection outside the loop, looping thru your simple task X number of times.

In the second, do it with the opening and closing of the connection inside the loop.

Change the X number of times to match your usage and expectations. That should give you a real good feel for the impact on your system.

Hope that helps you understand the basics... Jack.

NECRO ANSWER: The best way is to place the connection in a 'using' statement so that it is scoped to the work it needs to do:

using (SqlConnection conn = new SqlConnection())
{
    DataAdapter1.Fill(DataTable1);
    DataAdapter2.Fill(DataTable2);
    DataAdapter3.Fill(DataTable3);
    DataAdapter4.Fill(DataTable4);
    DataAdapter5.Fill(DataTable5);
    ...
    ...
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!