1. 程式人生 > >C#中判斷SQL Server資料庫是否連線成功

C#中判斷SQL Server資料庫是否連線成功

using System.Data;
using System.Data.SqlClient;
        
SqlConnection conn = new SqlConnection();
        if (conn.State == ConnectionState.Open)
        {
               MessageBox.Show("資料庫連線成功!");
        }