今天就跟大家聊聊有關(guān)如何在Visual Studio中連接SQLServer數(shù)據(jù)庫(kù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)專注于邢臺(tái)縣企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開(kāi)發(fā),購(gòu)物商城網(wǎng)站建設(shè)。邢臺(tái)縣網(wǎng)站建設(shè)公司,為邢臺(tái)縣等地區(qū)提供建站服務(wù)。全流程按需定制設(shè)計(jì),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)一、Sql Server 在Visual Studio的連接有兩種方法:
(1)本地計(jì)算機(jī)連接;
string s = "Data Source=計(jì)算機(jī)名稱;initial Catalog=數(shù)據(jù)庫(kù)名稱;integrated Security=True";
(2)windows身份驗(yàn)證方式連接;
string cc="Data Source = 計(jì)算機(jī)名稱; Initial Catalog = 數(shù)據(jù)庫(kù)名稱; User ID = sa; Password = 你的密碼";
二、在Visual Studio中使用:
例1:查詢數(shù)據(jù)庫(kù)中的數(shù)據(jù)并且顯示出來(lái)
string s = "Data Source=計(jì)算機(jī)名稱;Initial Catalog=數(shù)據(jù)庫(kù)名稱;Integrated Security=True"; //此處使用本地計(jì)算機(jī)連接方式 SqlConnection conn = new SqlConnection(s); //創(chuàng)建連接 conn.Open(); //打開(kāi)連接 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(); //關(guān)閉連接 string realname=""; string username=""; string mobile=""; string address=""; for (int i=0;i
例2:刪除表中數(shù)據(jù)
string cc="Data Source = 計(jì)算機(jī)名稱; Initial Catalog = 數(shù)據(jù)庫(kù)名稱; User ID = sa; Password = 你的密碼"; //使用windows身份驗(yàn)證 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:修改表中數(shù)據(jù)
string s = "Data Source=計(jì)算機(jī)名稱;initial Catalog=數(shù)據(jù)庫(kù)名稱;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:向表中插入數(shù)據(jù)
string s = "data source=計(jì)算機(jī)名稱;initial catalog=數(shù)據(jù)庫(kù)名稱;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();
看完上述內(nèi)容,你們對(duì)如何在Visual Studio中連接SQLServer數(shù)據(jù)庫(kù)有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。