using System.Data;
using System.Data.SqlClient;
...
string strConnection="user id=sa;password=;";
strConnection ="initial catalog=Northwind;Server=YourSQLServer;";
strConnection ="Connect Timeout=30";
SqlConnection objConnection=new SqlConnection(strConnection);
...
objConnection.Open();
objConnection.Close();
--------------------------------------------------------------------------------------------------------------------
解釋:
串連SQL Server資料庫的機制與串連Access的機制沒有什麼太大的區別,只是改變了Connection對象和連接字串中的不同參數.
首先,串連SQL Server使用的命名空間不是"System.Data.OleDb",而是"System.Data.SqlClient".
其次就是他的連接字串了,我們一個一個參數來介紹(注意:參數間用分號分隔):
"user id=sa":串連資料庫的驗證使用者名稱為sa.他還有一個別名"uid",所以這句我們還可以寫成"uid=sa".
"password=":串連資料庫的驗證密碼為空白.他的別名為"pwd",所以我們可以寫為"pwd=".
這裡注意,你的SQL Server必須已經設定了需要使用者名稱和密碼來登入,否則不能用這樣的方式來登入.如果你的SQL Server設定為Windows登入,那麼在這裡就不需要使用"user id"和"password"這樣的方式來登入,而需要使用"Trusted_Connection=SSPI"來進行登入.
"initial catalog=Northwind":使用的資料來源為"Northwind"這個資料庫.他的別名為"Database",本句可以寫成"Database=Northwind".
"Server=YourSQLServer":使用名為"YourSQLServer"的伺服器.他的別名為"Data Source","Address","Addr".如果使用的是本機資料庫且定義了執行個體名,則可以寫為"Server=(local)\執行個體名";如果是遠程伺服器,則將"(local)"替換為遠程伺服器的名稱或IP地址.
"Connect Timeout=30":連線逾時時間為30秒.
在這裡,建立連線物件用的建構函式為:SqlConnection.
------------------------------------------------------------------------------------------------------------------------
asp.net串連ORACLE資料庫
----------------------------------------------------------------------------------------------------------------------
string ConnectionString="Data Source=sky;user=system;password=manager;";//寫串連串
OracleConnection conn=new OracleConnection(ConnectionString);//建立一個新串連
try
{
conn.Open();
OracleCommand cmd=conn.CreateCommand();
cmd.CommandText="select * from MyTable";//在這兒寫sql語句
OracleDataReader odr=cmd.ExecuteReader();//建立一個OracleDateReader對象
while(odr.Read())//讀取資料,如果odr.Read()返回為false的話,就說明到記錄集的尾部了
{
Response.Write(odr.GetOracleString(1).ToString());//輸出欄位1,這個數是欄位索引,具體怎麼使用欄位名還有待研究
}
odr.Close();
}
catch(Exception ee)
{
Response.Write(ee.Message); //如果有錯誤,輸出錯誤資訊
}
finally
{
conn.Close(); //關閉串連
---------------------------------------------------------------------------------------------------------------------------------------
asp.net串連Access
-----------------------------------------------------------------------------------------------------------------------------------------
using System.Data;
using System.Data.OleDb;
......
string strConnection="Provider=Microsoft.Jet.OleDb.4.0;";
strConnection =@"Data Source=C:\BegASPNET\Northwind.mdb";
OleDbConnection objConnection=new OleDbConnection(strConnection);
......
objConnection.Open();
objConnection.Close();
......
--------------------------------------------------------------------------------
解釋:
串連Access資料庫需要匯入額外的命名空間,所以有了最前面的兩條using命令,這是必不可少的!
strConnection這個變數裡存放的是串連資料庫所需要的連接字串,他指定了要使用的資料提供者和要使用的資料來源.
"Provider=Microsoft.Jet.OleDb.4.0;"是指資料提供者,這裡使用的是Microsoft Jet引擎,也就是Access中的資料引擎,asp.net就是靠這個和Access的資料庫連接的.
"Data Source=C:\BegASPNET\Northwind.mdb"是指明資料來源的位置,他的標準形式是"Data Source=MyDrive:MyPath\MyFile.MDB".
ps:
1." ="後面的"@"符號是防止將後面字串中的"\"解析為逸出字元.
2.如果要串連的資料庫檔案和當前檔案在同一個目錄下,還可以使用如下的方法串連:
strConnection ="Data Source=";
strConnection =MapPath("Northwind.mdb");
這樣就可以省得你寫一大堆東西了!
3.要注意連接字串中的參數之間要用分號來分隔.
"OleDbConnection objConnection=new OleDbConnection(strConnection);"這一句是利用定義好的連接字串來建立了一個連結化物件,以後對資料庫的操作我們都要和這個對象打交道.
"objConnection.Open();"這用來開啟串連.至此,與Access資料庫的串連完成.
------------------------------------------------------------------------------------------------------------------------------------
asp.net串連MY SQL資料庫
-----------------------------------------------------------------------------------------------------------------------------------
串連:
string connStr = "server=localhost;user id=root; password=; database=aa; pooling=false";//
連接字串
MySqlConnection conn = new MySqlConnection( connStr );//構造資料庫連接
try
{
conn.Open();//開啟串連
MySqlCommand cmd = new MySqlCommand("select * from list",conn);//構造查詢命令
this.DataGrid1.DataSource=cmd.ExecuteReader();//執行查詢,返回一個DataReader,設定DataGrid1的資料來源為該DataReader
this.DataGrid1.DataBind();//DataGrid1資料繫結
conn.Close();//關閉串連
}
catch(MySqlException ex) //捕獲異常
{
Response.Write(ex.Message);//向頁面寫異常
}