在asp.net中操作sql-server資料庫的一些小技巧
來源:互聯網
上載者:User
asp.net|server|技巧|資料|資料庫 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","<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:由於網路速度太慢,不能將相關的顯示圖表傳到伺服器,真一大遺憾。還有不知道編寫代碼的樣式和格式,使得給出的代碼顯得很零亂。