C#對SQL Server數(shù)據(jù)庫連接,增,刪,改,查示例代碼
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
using System; using System.Collections.Generic; using System.Web; using System.Data.OleDb; using System.Data; using System.Data.SqlClient; //數(shù)據(jù)庫連接字符串(四個參數(shù),數(shù)據(jù)庫服務器名稱,連接的數(shù)據(jù)庫名稱,登陸賬號和密碼) string strconnection = "Data Source=****;Initial Catalog=****;User ID=sa ;password=******";//查 SqlDataAdapter sda = new SqlDataAdapter("select語句", strconnection);//該對象會自動打開并連接數(shù)據(jù)庫 DataSet ds = new DataSet(); sda.Fill(ds); DataTable dt = ds.Tables[0];//數(shù)據(jù)存在dt中 SqlConnection conn = new SqlConnection(strconnection);//連接對象 if (conn.State == ConnectionState.Closed)//打開連接,如果沒有該句,在數(shù)據(jù)庫關閉情況下會出現(xiàn)異常 { conn.Open(); } SqlCommand cmd = new SqlCommand(); cmd.Connection = conn; cmd.CommandText = "SQL語句"; cmd.CommandType = CommandType.Text; cmd.ExecuteNonQuery();//返回一個大于0的數(shù),則執(zhí)行成功,根據(jù)需要,可以對返回值做個判斷 if (conn.State == ConnectionState.Open)//關閉連接 { conn.Close(); } 該文章在 2021/1/30 11:36:19 編輯過 |
關鍵字查詢
相關文章
正在查詢... |