c# odbcconnection not closing
本文关键字:closing not odbcconnection | 更新日期: 2023-09-27 18:24:06
我在c#中遇到了一个OdbcConnection问题。我已经编写了一个类,它将我的连接和命令封装到一个通用接口中。代码基本上是这样的(我省略了一些不重要的部分)
//connection, command, _connectionType and _commandType are class members
private void getConnection(ref String commandText, out DbConnection connection, out DbCommand command, params DbParameter[] parameter)
{
connection = Activator.CreateInstance(this._connectionType) as DbConnection;
connection.ConnectionString = this._connectionString;
connection.Open();
command = Activator.CreateInstance(this._commandType) as DbCommand;
command.Connection = connection;
command.CommandText = commandText;
}
//Other methods use the DbCommand for SELECTS, UPDATES, etc...
private void disposeConnection()
{
this._command.Dispose();
this._connection.Close();
this._connection.Dispose();
this._command = null;
this._connection = null;
}
我打开一个连接,执行我想要的命令并调用disposeConnection
。但是我们的数据库(SAP Sybase SQL版本11,16,17)仍然显示连接处于"PREFETCH"状态。。。
在执行SQL命令之后,在finally
块内部调用disposeConnection
。
为什么连接未正确关闭?
我终于找到了解决方案。我让DbDataReader
开着。我不得不将所有的DbDataReaders
封装在一个using块中。现在,当我调用_connection.close()
时,我的连接已关闭。
因此,连接是否处于关闭状态并不重要,如果任何其他对象正在访问数据库,则连接并没有真正关闭。