SQLServer 在Visual Studio的2種串連方法_實用技巧

來源:互聯網
上載者:User
一、Sql Server 在Visual Studio的串連有兩種方法:
(1)本機電腦串連;
複製代碼 代碼如下:

string s = "Data Source=電腦名稱;initial Catalog=資料庫名稱;integrated Security=True"; 

(2)windows身分識別驗證方式串連;
複製代碼 代碼如下:

string cc="Data Source = 電腦名稱; Initial Catalog = 資料庫名稱; User ID = sa; Password = 你的密碼"; 

二、在Visual Studio中使用:
例1:查詢資料庫中的資料並且顯示出來
複製代碼 代碼如下:

string s = "Data Source=電腦名稱;Initial Catalog=資料庫名稱;Integrated Security=True";  //此處使用本機電腦串連方式 
SqlConnection conn = new SqlConnection(s);   //建立串連 
conn.Open();    //開啟串連 
SqlCommand cmd = conn.CreateCommand(); 
cmd.CommandText = "select * from T_User";   //使用命令 
SqlDataAdapter adapter=new SqlDataAdapter(cmd); 
DataTable dt=new DataTable(); 
adapter.Fill(dt); 
conn.Dispose();  //釋放所以資源 
cmd.Dispose(); 
conn.Close();  //關閉串連 
string realname=""; 
string username=""; 
string mobile=""; 
string address=""; 
for (int i=0;i<dt.Rows.Count;i++) 

    realname=dt.Rows[i][3].ToString(); 
    username=dt.Rows[i][1].ToString(); 
    mobile=dt.Rows[i][4].ToString(); 
    address=dt.Rows[i][5].ToString(); 
    Console.WriteLine("姓名為{0},使用者名稱為{1},手機為{2},地址為{3}", realname, username, mobile, address); 

Console.ReadKey(); 

例2:刪除表中資料
複製代碼 代碼如下:

string cc="Data Source = 電腦名稱; Initial Catalog = 資料庫名稱; User ID = sa; Password = 你的密碼";   //使用windows身分識別驗證 
SqlConnection conn = new SqlConnection(s); 
conn.Open(); 
SqlCommand cmd = conn.CreateCommand(); 
cmd.CommandText = "delete from T_User where Id=5"; 
cmd.ExecuteNonQuery(); 
cmd.Dispose(); 
conn.Close(); 
Console.WriteLine("刪除成功"); 
Console.ReadKey(); 

例3:修改表中資料
複製代碼 代碼如下:

string s = "Data Source=電腦名稱;initial Catalog=資料庫名稱;integrated Security=True"; 
SqlConnection conn = new SqlConnection(s); 
conn.Open(); 
SqlCommand cmd = conn.CreateCommand(); 
cmd.CommandText = "update T_User set Card=@card where ID=3"; 
cmd.Parameters.AddWithValue("@card", "13000000000000"); 
cmd.ExecuteNonQuery(); 
cmd.Dispose(); 
conn.Close(); 
conn.Dispose(); 
Console.WriteLine("修改成功!"); 
Console.ReadKey(); 

例4:向表中插入資料
複製代碼 代碼如下:

string s = "data source=電腦名稱;initial catalog=資料庫名稱;integrated security=true"; 
SqlConnection conn = new SqlConnection(s); 
conn.Open(); 
SqlCommand cmd = conn.CreateCommand(); 
cmd.CommandText = "insert into T_User(UserName,Password,RealName,Mobile,Address) values(@username,@password,@realname,@mobile,@address)"; 
cmd.Parameters.AddWithValue("@username", "xingxing"); 
cmd.Parameters.AddWithValue("@password", "77777"); 
cmd.Parameters.AddWithValue("@realname", "星星"); 
cmd.Parameters.AddWithValue("@mobile", 1300000000); 
cmd.Parameters.AddWithValue("@address", "河北省北京市"); 
cmd.ExecuteNonQuery(); 
cmd.Dispose(); 
conn.Close(); 
conn.Dispose(); 
Console.WriteLine("成功插入一行"); 
Console.ReadKey();
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.