企业库5.0强行关闭活动连接

发布于 2024-11-02 17:06:31 字数 277 浏览 0 评论 0原文

如何强制关闭数据库连接?

我用来创建连接的示例代码是:

class Customer{
     private readonly Database _db;
      public Customer(){
            _db = = DatabaseFactory.CreateDatabase(_userSettings.ConnstringName);
       }

   .. stuff to use this connection..

}

How can I close Database connection forcefully?

The sample code I'm using to create connection is:

class Customer{
     private readonly Database _db;
      public Customer(){
            _db = = DatabaseFactory.CreateDatabase(_userSettings.ConnstringName);
       }

   .. stuff to use this connection..

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失退 2024-11-09 17:06:31

将代码(.. 使用此连接的内容..)放入 using 块中,这将确保连接关闭。例如:

using (DbCommand command = _db.GetStoredProcCommand(sprocName, parameters))    
{

和:

using (IDataReader rdr = _db.ExecuteReader(command))
{

使用块是确保资源正确关闭的好方法:

using 语句允许
程序员指定何时对象
使用资源的应该释放
他们。

否则,您必须在连接对象上显式调用 Close() 方法:

if (command.Connection.State == ConnectionState.Open)
            command.Connection.Close();

Put the code (.. stuff to use this connection..) inside a using block, which will ensure the connection is closed. For example:

using (DbCommand command = _db.GetStoredProcCommand(sprocName, parameters))    
{

and:

using (IDataReader rdr = _db.ExecuteReader(command))
{

Using blocks are a nice way of ensuring resources are closed properly:

The using statement allows the
programmer to specify when objects
that use resources should release
them.

Otherwise, you have to explicitly call the Close() method on the connection object:

if (command.Connection.State == ConnectionState.Open)
            command.Connection.Close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文