㈠ VS2008如何連接SQL資料庫越詳細越好
1.建立連接
2.打開連接
3.資料庫操作
4.關閉連接
5.撤銷連接
㈡ vs2010中如何鏈接sql server 資料庫
如果是asp.net在web.config 如果是winform 在app.config中的配置節<connectionStrings>
中添加以下代碼
<connectionStrings>
<add name="連接名稱" connectionString="Data Source=伺服器名\實例名;Initial Catalog=資料庫名;Persist Security Info=True;User ID=用戶名;Password=密碼" providerName="System.Data.SqlClient"/>
</connectionStrings>
在使用連接時要添加引用。asp.net中添加
using System.Data.SqlClient;
Sqlconnection Conn=new SqlConnection(ConfigurationManager.ConnectionStrings["連接名稱"].ConnectionString);
㈢ vs與sql資料庫鏈接代碼
//先可以創建一個連接資料庫的字元串常量或變數
格式如下
string
Sql
=
"Server
=
伺服器名稱;DataBase
=
資料庫名;UID
=
用戶名;
PWD
=
密碼;
"
//然後創建一個SqlConnection的對象
並且把鏈接資料庫的Sql
字元串變數作為參數
//這樣就會調用SqlConnection類的參數為String類型的構造函數為你的Connct對象賦值
SqlConnection
Connct
=
new
SqlConnection(Sql);
然後你只需要
Connct.open();
就可以對資料庫進行一些操作
或者是綁定數據源
㈣ 怎麼用VS的C#Winform連接sql資料庫
C#
連接資料庫的方式
WinForm和WebForm是一樣的
conn=new SqlConnection("server=資料庫伺服器地址;database=資料庫名稱;uid=sa;pwd=密碼;");//添加、修改、刪除 更換sql即可string sql="insert into tablename(欄位1,欄位2)values(值1,值2)";SqlCommand cmd=new SqlCommand(sql,conn);conn.Open();cmd.ExecuteNonQuery();conn.Close();//查詢sql="select * from tablename";SqlDataAdapter da=new SqlDataAdapter(sql,conn);DataTable dt=new DataTable();conn.Open();da.Fill(dt);conn.Close();