我试图在我的类的析构函数中关闭一个连接,以确保如果我忘记关闭它 - 它会自动关闭,并触发异常。
我搜索了一下,我创立了here,这是无法完成的。
现在我尝试关闭它两次 - 它有效!!!
但我想知道这是不是一个好的解决方案。 你觉得怎么样?
这是代码
public class MyCommand : IDisposable
{
public readonly DbCommand command;
public MyCommand(string ConnectionString, DbProviderFactory factory)
{
var tempConnexion = factory.CreateConnection();
tempConnexion.ConnectionString = ConnectionString;
tempConnexion.Open();
var t = tempConnexion.BeginTransaction(IsolationLevel.ReadCommitted);
command = tempConnexion.CreateCommand();
command.Connection = tempConnexion;
command.Transaction = t;
}
public MyCommand(string ConnectionString, DbProviderFactory factory, string requete)
: this(ConnectionString, factory)
{
command.CommandText = requete;
}
public MyCommand(string ConnectionString, string provider)
: this(ConnectionString, DbProviderFactories.GetFactory(provider)) { }
public MyCommand(string ConnectionString, string provider, string requete)
: this(ConnectionString, DbProviderFactories.GetFactory(provider), requete) { }
public static implicit operator DbCommand(myCommand c)
{
return c.command;
}
public void Dispose()
{
try
{
var t = command.Transaction;
if (t != null)
{
t.Commit();
t.Dispose();
}
}
catch { }
try
{
if (command.Connection != null)
command.Connection.Dispose();
command.Dispose();
}
catch { }
}
~MyCommand()
{
if (command != null && command.Connection != null && command.Connection.State == ConnectionState.Open)
for (int i = 0; i < 2; i++)//twice to get the handle - it's working!
Dispose();
}
}
答案 0 :(得分:3)
连接由Dispose
方法关闭,而不是由析构函数关闭。
<强>注意强>
请勿在Connection,DataReader或其他任何设备上调用Close或Dispose 类的Finalize方法中的其他托管对象。在一个 终结者,你应该只发布你的类的非托管资源 直接拥有。如果您的班级不拥有任何非托管资源,请执行此操作 不要在类定义中包含Finalize方法。
处理连接的更好和推荐的方法是使用 USING 语句,这相当于说
try
{
// your code
}
finally
{
myobject.Dispose();
}