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(ds,"myemployees");
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","");
可以看到,在數據集ds中新生成了兩個臨時表“myemployees”和“myCustomers”。為驗證這兩個表中數據確實已讀入數據集ds中,通過數據讀取操作將表“myemployees”中對應於屬性“Hiredate”的第一行賦值給字符型變量t1,將表“myCustomers”中對應於屬性“ContactTitle”的第一行賦值給字符型變量t2,