我需要你的帮助。我需要在应用程序WPF中开发一个函数,它将每30秒触发一次,ping到服务器并检查它是否未连接到sql server,我们将显示错误消息。有没有办法简单地" ping"来自C#SQL Server?
提前致谢!
以下是我的连接代码,如果我遗漏了任何内容。
/// Test that the server is connected
private bool IsServerConnected()
{
using (SqlConnection connection = ConnexionSGBD())
{
try
{
connection.Open();
Console.WriteLine("SQL Connection successful.");
return true;
}
catch (SqlException)
{
Console.WriteLine("SQL Connection failled.");
msgException();
return false;
}
}
}
//La fonction qui permet d'exécuter une requête SQL et stocker le résultat dans un datatable
public System.Data.DataTable GetTable()
{
SqlConnection connection = ConnexionSGBD();
string sqlrequete = "SELECT * FROM BD;";
System.Data.DataTable table = new DataTable();
if (IsServerConnected()==true)
{
connection.Open();
using (SqlCommand cmd = new SqlCommand(sqlrequete, connection))
{
table.Load(cmd.ExecuteReader());
}
return table;
}
else
{
msgException();
return null;
}
}