一、分頁存儲過程
----------使用存儲過程編寫一個分頁查詢----------------------- set nocount off --關閉SqlServer消息 --set nocount on --開啟SqlServer消息 go create proc usp_getMyStudentsDataByPage --輸入?yún)?shù) @pagesize int=7,--每頁記錄條數(shù) @pageindex int=1,--當前要查看第幾頁的記錄 --
二、ADO調用存儲過程
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace _02通過Ado.Net調用存儲過程 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private int pageIndex = 1;//當前要查看的頁碼 private int pageSize = 7;//每頁顯示的記錄條數(shù) private int pageCount;//總頁數(shù) private int recordCount;//總條數(shù) //窗體加載的時候顯示第一頁的數(shù)據(jù) private void Form1_Load(object sender, EventArgs e) { LoadData(); } private void LoadData() { //根據(jù)pageIndex來加載數(shù)據(jù) string constr = "Data Source=steve-pc;Initial Catalog=itcast2014;Integrated Security=True"; #region 1 //using (SqlConnection conn = new SqlConnection(constr)) //{ // //將sql語句變成存儲過程名稱 // string sql = "usp_getMyStudentsDataByPage"; // using (SqlCommand cmd = new SqlCommand(sql, conn)) // { // //告訴SqlCommand對象,現(xiàn)在執(zhí)行的存儲過程不是SQL語句 // cmd.CommandType = CommandType.StoredProcedure; // //增加參數(shù)(存儲過程中有幾個參數(shù),這里就需要增加幾個參數(shù)) // //@pagesize int=7,--每頁記錄條數(shù) // //@pageindex int=1,--當前要查看第幾頁的記錄 // //@recordcount int output,--總的記錄的條數(shù) // //@pagecount int output --總的頁數(shù) // SqlParameter[] pms = new SqlParameter[] { // new SqlParameter("@pagesize",SqlDbType.Int){Value =pageSize}, // new SqlParameter("@pageindex",SqlDbType.Int){Value =pageIndex}, // new SqlParameter("@recordcount",SqlDbType.Int){ Direction=ParameterDirection.Output}, // new SqlParameter("@pagecount",SqlDbType.Int){Direction=ParameterDirection.Output} // }; // cmd.Parameters.AddRange(pms); // //打開連接 // conn.Open(); // //執(zhí)行 //using(SqlDataReader reader=cmd.ExecuteReader()) //{ //reader.Read() //} //pms[2].Value // } //} #endregion //DataAdapter方式 DataTable dt = new DataTable(); using (SqlDataAdapter adapter = new SqlDataAdapter("usp_getMyStudentsDataByPage", constr)) { adapter.SelectCommand.CommandType = CommandType.StoredProcedure; SqlParameter[] pms = new SqlParameter[] { new SqlParameter("@pagesize",SqlDbType.Int){Value =pageSize}, new SqlParameter("@pageindex",SqlDbType.Int){Value =pageIndex}, new SqlParameter("@recordcount",SqlDbType.Int){ Direction=ParameterDirection.Output}, new SqlParameter("@pagecount",SqlDbType.Int){Direction=ParameterDirection.Output} }; adapter.SelectCommand.Parameters.AddRange(pms); adapter.Fill(dt); //獲取
效果圖:
三、通過ado.net調用存儲過程與調用帶參數(shù)的SQL語句的區(qū)別。
1>把SQL語句變成了存儲過程名稱
2>設置SqlCommand對象的CommandType為CommandType.StoredProcedure
這步本質 就是在 存儲過程名稱前面加了個“ exec ”
3>根據(jù)存儲過程的參數(shù)來設置SqlCommand對象的參數(shù)。
4>如果有輸出參數(shù)需要設置輸出參數(shù)的Direction屬性為:Direction=ParameterDirection.Output
四、如果是通過調用Command對象的ExecuteReader()方法來執(zhí)行的該存儲過程,那么要想獲取輸出參數(shù),必須得等到關閉reader對象后,才能獲取輸出參數(shù)。
以上這篇ADO調用分頁查詢存儲過程的實例講解就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com