class Program { static void Main() { var connection = new sqlConnection("myConnectionString"); connection.Open(); connection.StateChange += HandlesqlConnectionDrop; Console.WriteLine("Hi"); Console.ReadLine(); } private static void HandlesqlConnectionDrop(object connection,StateChangeEventArgs args) { Console.WriteLine("DB change detected"); } }
当sql Server实例运行时,我启动上述代码.然后我继续执行
SHUTDOWN WITH NOWAIT;
在程序连接到的sql server实例上.然后我观察sql Server服务停止.但是,我从来没有看到输出中的“DB change detected”消息.为什么是这样?
另外:如果我尝试在sql连接上执行一个操作,但从来没有在手,我将看到StateChange处理程序被调用.有没有办法这种行为可以改变?
解决方法
When is DbConnection.StateChange called?
您可以通过查看Microsoft参考源代码了解到.
StateChange
事件由DbConnection.OnStateChange
功能提升.寻找对这个函数的引用仅产生一些实例:
首先,在sqlConnection类中,OnStateChange仅在Close
方法中调用.
然后在DbConnectionHelper.cs
文件中,有一个名为DBCONNECTIONOBJECT的部分类.它看起来像用于所有DbConnection派生类使用一些构建时间的shenanigans.所以你可以认为它是sqlConnection的一部分.无论如何,它仅在SetInnerConnectionEvent
函数内调用OnStateChange.
据我所知(部分类的废话使它变得困难),sqlConnection.SetInnerConnectionEvent只能从SqlConnectionFactory.SetInnerConnectionEvent
调用.这就是从:
> DbConnectionClosed.TryOpenConnection
> DbConnectionInternal.TryOpenConnectionInternal
> DbConnectionInternal.CloseConnection
因此,总而言之,事件只是响应客户端操作引起的 – 对sqlConnection内置的连接状态似乎没有任何轮询.
Is there a way this behavior can be changed?
看源代码,我看不到一个.如其他人所建议的那样,当然可以实施你自己的投票.