四虎精品视频-四虎精品成人免费网站-四虎黄色网-四虎国产视频-国产免费91-国产蜜臀97一区二区三区

微軟發布的Data Access Application Block的使用代碼

為了方便的訪問數據,微軟自己封裝了一個數據訪問模塊, 即Data Access Application Block. 通過它,我們用來訪問數據庫的編碼量大大減少了. 這樣的代碼既有效率,又減少了出現錯誤的幾率,其益處是可見的. 下面舉兩個例子比較一下

1. 使用一般的sql語句進行控件綁定, 常規代碼如下:


 1//Create the connection and sql to be executed
 2string strConnTxt = "Server=(local);Database=Northwind;Integrated Security=True;";
 3string strSql = "select * from Products where categoryid = 1"
 4
 5//Create and open the connection object
 6SqlConnection objConn = new SqlConnection(strConnTxt);
 7objConn.Open();
 8
 9//Create the connamd object
10SqlCommand objCmd = new SqlCommand(strSql, objConn);
11objCmd.CommandType = CommandType.Text;
12
13//databind the datagrid by calling the ExecuteReader() method
14DataGrid1.DataSource = objCmd.ExecuteReader();
15DataGrid1.DataBind();
16
17//close the connection
18objConn.Close();如果用微軟封裝的Data Access Application Block, 其主要是sqlHelper類,代碼如下:
1//Create the connection string and sql to be executed
2string strSql = "select * from products where categoryid = 1";
3string strConnTxt = "Server=(local);Database=Northwind;Integrated Security=True;";
4
5DataGrid1.DataSource = SqlHelper.ExecuteReader(strConnTxt, CommandType.Text, strSql);
6DataGrid1.DataBind();
2. 調用存儲過程進行控件綁定
常規代碼如下:

 1//Open a connection to Northwind
 2SqlConnection objConn = new SqlConnection("Server=(local);Database=Northwind;Integrated Security=True;");
 3ObjConn.Open();
 4
 5//Create the stored procedure command object
 6SqlCommand objCmd = new SqlCommand("getProductsCategory", objConn);
 7objCmd.CommandType = CommandType.StoredProcedure;
 8
 9//create the parameter object for the stored procedure parameter
10objCmd.Parameter.Add("@CategoryID", SqlDbType.Int);
11objCmd.Parameter["@CategoryID"].Value = 1;
12
13//create our DataAdapter and DataSet objects
14SqlDataAdapter objDA = new SqlDataAdapter(objCmd);
15DataSet objDS = new DataSet("Category_Results");
16
17//fill the dataset
18objDA.Fill(objDS);
19
20//databind the datagrid
21DataGrid1.DataSource = objDS;
22DataGrid1.DataBind();
23
24//close connection
25objConn.Close();如果用微軟封裝的Data Access Application Block,其主要是sqlHelper類,代碼如下:
1string strConn = "Server=(local);Database=Northwind;Integrated Security=True;";
2DataSet objDS = SqlHelper.ExecuteDataset(strConn, CommandType.StoredProcedure, "getProductsByCategory", new SqlParameter("@CategoryID", 1));
3
4DataGrid1.DataSource = objDS;
5DataGrid1.DataBind();
Data Access Application Block, 有其封裝的源代碼和幫助文件,我們也可以根據項目需求做一下改動再編譯成dll引入項目,以給項目開發帶來便利. 下載地址如下:
http://download.microsoft.com/download/VisualStudioNET/daabref/RTM/NT5/EN-US/DataAccessApplicationBlock.msi

AspNet技術微軟發布的Data Access Application Block的使用代碼,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 极寒复出| 草船借箭剧本| 血疑电视剧| 陈程玉| 安息2| 《美景之屋| 太子传说| 邓佳佳| 生产时直拍宫口| 任港秀| 意大利人在俄罗斯的奇遇| 清淮河| 蛇欲电影| 买下我俄罗斯完整版免费观看| 派拉蒙影业| 火柴人游戏机怎么做| 血疑电视剧| 感冒难受的图片| 大场久美子| 单身情歌 歌词| 戚薇床戏| 青草国产视频| 少年派2全集免费播放| 尹雪喜演的全部电影| 无锡旅游地图| 柯哀分析文| 年轻阿姨的性教育| 金太狼的幸福生活电影演员表介绍| 陈芷琰的搞笑日常| 张静芝| 二年级53天天练语文上册答案 | 奶奶的星星| 美女网站视频免费| 45分钟见奶薄纱透明时装秀| 第一财经今日股市直播间在线直播| 红色娘子军歌词| 南通紫琅音乐节| 河北卫视节目表| 误杀1演员表| 饥渴电影完整版| 麻豆视频观看|