1.給資料庫語句參數傳遞
向資料庫操作語句傳遞參數可以透過預存程序實現,這裡給出另外兩種簡單易捷的方法:
可以在C#中透過字串操作將參數直接傳入SQL語句變數中,例如:
string s="Davolio";
string sql= "select * from employees where LastName="+"'"+s+"'"
相當於寫入SQL語句:
select * from employees where LastName='Davolio'
也可以透過thisCommand.Parameters.Add()方法實現,如下所示:
string s="Davolio";
SqlConnection thisConnection=new SqlConnection
("Data Source=(local);Initial Catalog=Northwind;UID=sa;PWD=");
thisConnection.Open ();
SqlCommand thisCommand=thisConnection.CreateCommand ();
thisCommand.CommandText =
" select * from employees where LastName=@charname ";
thisCommand.Parameters.Add("@charname",s);
可以看到,字串s將參數「Ddbolio」傳遞給資料庫操作語句中的參數charname。
2.將資料庫中不同表內的資料讀入到資料集DataSet中
SqlDataAdapter的Fill方法可以填入已知資料集,並且為每個填入項目建立一個臨時表,可以透過對該表的存取來讀取資料集中的相關數據。其相關操作如下圖所示:
SqlConnection thisConnection=new SqlConnection
("Data Source=(local);Initial Catalog=Northwind;UID=sa;PWD=");
try
{
thisConnection.Open ();
}
catch(Exception ex)
{
thisConnection.Close ();
}
string sql1="select * from employees";
string sql2="select * from Customers";
SqlDataAdapter sda=new SqlDataAdapter(sql1,thisConnection);
DataSet ds= new DataSet();
sda.Fill(,"myemployds,""myemployds,");
sda.Dispose();
SqlDataAdapter sda1=new SqlDataAdapter(sql2,thisConnection);
sda1.Fill(ds,"myCustomers");
sda1.Dispose();
string t1=ds.Tables["myemployees"].Rows[0]["Hiredate"].ToString();
string t2=ds.Tables["myCustomers"].Rows[0]["ContactTitle"].ToString( );
Page.RegisterStartupScript("aa","<script language=javascript>alert('t1="+t1+",t2="+t2+"');</script>");
可以看到,在資料集ds中新產生了兩個臨時表“myemployees”和“myCustomers”。要驗證這兩個表中資料確實已讀入資料集ds中,透過資料讀取操作將表格“myemployees”中對應於屬性“Hiredate”的第一行賦值給字元型變數t1,將表格“myCustomers”中對應於屬性「ContactTitle」的第一行賦值給字元型變數t2,並透過JavaStript函數「alert()」將這些變數顯示到彈出視窗中。 Page.RegisterStartupScript方法用於發出客戶端腳本區塊,其第一個參數為標誌位,使用者可以任意選取,第二個參數為JavaScript腳本,這裡alert函數用來彈出MessageBox對話框,我們將參數t1和t2傳入該腳本中,使其在MessageBox中顯示出來。
ps:由於網路速度太慢,無法將相關的顯示圖表傳到伺服器,真一大遺憾。還有不知道寫程式的樣式和格式,使得給的程式碼顯得很零亂。