本文介绍了在ASP.Net中使用Ping的数据库运行状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
HI,
我要测试运行的Oracle和SQL Server的运行状态为Up或Down.当前,我正在使用以下方式检查连接..例如,Oracle连接为..
I want to test the Oracle and SQL servers running are Up or Down. Currently, I am using the following way to check the connection.. for example Oracle connection as ..
Dim cn As OracleConnection
cn = New OracleConnection(ConnStr)
cn.Open()
一切正常.但是,还有其他方法可以检查数据库运行状态,例如Ping.
请提出建议.
This is working fine. But, is there any other way to check the DB up status like Ping.
Please suggest.
推荐答案
Dim cn As OracleConnection
cn = New OracleConnection(ConnStr)
cn.Open()
If (cn.State And ConnectionState.Open) > 0 Then
'Do whatever you want
cn.Close()
Else
'Oops, it an't open
End If
这篇关于在ASP.Net中使用Ping的数据库运行状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!