Check if SQL Connection is Open or Closed

前端 未结 9 1742
春和景丽
春和景丽 2020-12-08 01:47

How do you check if it is open or closed I was using

 if (SQLOperator.SQLCONNECTION.State.Equals(\"Open\"))

however, even the State is \'Op

9条回答
  •  眼角桃花
    2020-12-08 02:47

    To check the database connection state you can just simple do the following

    if(con.State == ConnectionState.Open){}
    

提交回复
热议问题