本文介绍了如何在程序中检查数据库连接?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的项目中,用户可以拥有一种数据库,例如MS SQL Server,MY SQL,...在表单中,用户可以选择数据库的类型及其属性(数据库名称,用户名...)
当用户单击检查按钮时,我要检查数据库连接是否正确!
In my project user can have a kind of databases ,such as MS SQL Server,MY SQL,...
In a form ,user can select the type of DataBase and its properties(databaseName,username,...)
when the user click on check button,i want to check DataBase Connections if it is true or not!
推荐答案
SqlConnection con = new SqlConnection("your connection");
if (con.State == System.Data.ConnectionState.Closed)
{
//con.open();
}
最好的问候
米特瓦里(M.Mitwalli)
Best Regards
M.Mitwalli
这篇关于如何在程序中检查数据库连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!