標籤:ring class TE 參考 span source 傳回值 方法 help
代碼如下:
//需引用命名空間using System.Data;using System.Data.SqlClient; class DBHelper { //定義資料庫連接語句,串連語句書寫方法參考(文章最後) public static string connstr = "Data Source=.;Initial Catalog=MobileDB;Integrated Security=True"; //建立資料庫連接對象 public static SqlConnection conn = new SqlConnection (connstr); //定義datatable查詢方法,返回table public static DataTable Getdatatable(string sqlstr) { //建立databale對象 DataTable table = new DataTable (); //建立配接器物件 SqlDataAdapter adp = new SqlDataAdapter (sqlstr ,conn); //資料填充 adp.Fill (table); return table ; } //定義方法執行增刪改 public static bool ExecuteNonQuery(string sqlstr) { //開啟資料庫連接 conn.Open (); //建立command對象並執行sql語句 SqlCommand cmd = new SqlCommand (sqlstr ,conn); int result = cmd.ExecuteNonQuery (); //關閉串連 conn.Close (); //定義傳回值 return result >0; } }
*SQL資料庫兩種連接字串
SQL Server 身分識別驗證登入:server = 伺服器名;database=資料庫名;uid=使用者名稱;pwd=密碼;
Windows身分識別驗證連接字串:serve=伺服器名;database=資料庫名;Integrated Security=true;
C#winfrom最簡DBHelp(資料庫連接操作)