ADO.NET #3-1 (GridView + DataReader + SqlCommand)徹底手寫Code Behind

 

 

以前有分享過一個範例html

[C#] ADO.NET #3 (GridView + SqlDataSource)徹底手寫、後置程序代碼,兼論 SqlDataSource與UpdateParameter/DeleteParameter的用法

 

後來,在網絡上找到的人,就開始大量地爲「SqlDataSource小精靈」動手寫程序web

這並不是個人原意。sql

個人意思是,透過手寫的程序代碼,讓您知道 SqlDataSource「骨子裏面」也是ADO.NET數據庫

 

但,網絡上亂找範例,抄了就上.....這樣的心態,我也幫不上忙。網絡

https://www.youtube.com/watch?v=tnGqKV4F_Pkapp

 ................................................................................................................post

 

前兩天,有位讀者詢問「上集第十章的範例, GridView一次只能編輯(更改)、刪除一筆記錄,爲什麼要用DataSet來作??」fetch

由於.......我拿這個範例來 Demo DataSet的刪除、分頁、更新等等功能優化

不是「只能」這樣作  Orzspa

 

 

因此,我把這個範例(ASP.NET專題實務 / 鬆崗出版。上集,第十章)

改用 SqlCommand + DataReader來作。

 

首先,畫面上只有一個簡單的 GridView

<asp:GridView ID="GridView1" runat="server"   PageSize="5" DataKeyNames="id"
            OnRowCancelingEdit="GridView1_RowCancelingEdit"
            OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing"
            OnRowUpdating="GridView1_RowUpdating">
            <Columns>
                <asp:CommandField ButtonType="Button" ShowEditButton="True" />
                <asp:CommandField ShowSelectButton="True" />
                <asp:CommandField ShowDeleteButton="True" />
            </Columns>
        </asp:GridView>

 

 

後置程序代碼:

 

using System.Web.Configuration;
using System.Data.SqlClient;
using System.Data;
 
 
    protected void DBInit()   //====本身手寫的程序代碼, Datareader / SqlCommand ====(Start)
    {  
           // 透過 DataReader 來作分頁,之前已經發表過了。
           // 請看下面文章& Youtube影片教學: 

[.NET 4.5]GridView自定義分頁的新屬性,AllowCustomPaging與 VirtualItemCount #2 範例 - DataReader +數據庫分頁

 
    }
 
 
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            DBInit();   //---只有[第一次]執行本程序,纔會進入 if判別式內部。
            // 第一次執行本程序,請從「GridView 第一頁(0)」看起。
        }
    }
 
 
    protected void GridView1_ RowUpdating(object sender, GridViewUpdateEventArgs e)
    {     //----修改、更新
 
        //----由於前面有三個「功能鍵(編輯、選取、刪除)」,因此Cells[ ]從零算起,需扣掉前三個功能鍵與 id字段。
        TextBox my_test_time, my_title, my_author;
 
        my_test_time = (TextBox)GridView1.Rows[e.RowIndex].Cells[4].Controls[0];   // 抓到「Text控件」。
        my_title = (TextBox)GridView1.Rows[e.RowIndex].Cells[5].Controls[0];
        my_author = (TextBox)GridView1.Rows[e.RowIndex].Cells[6].Controls[0];
 
        //=== DataReader的寫法 ==========================================
        SqlConnection Conn = new SqlConnection("您本身的連接字符串,或是Web.Config裏面的連接字符串");
        Conn.Open();  
        
        //== (2). 執行SQL指令。或是查詢、撈取數據。
        SqlCommand cmd = new SqlCommand("update [test] set [test_time] = @test_time, [title] = @title, [author] = @author where [id] = @id", Conn);
        cmd.Parameters.AddWithValue("@test_time", Convert.ToDateTime(my_test_time.Text));
        cmd.Parameters.AddWithValue("@title", my_title.Text);
        cmd.Parameters.AddWithValue("@author", my_author.Text);
 
        cmd.Parameters.AddWithValue("@id", (int)GridView1.DataKeys[e.RowIndex].Value);
        //---- GridView1.DataKeys[e.RowIndex].Value 是指:「用戶點選的那一列」數據,所對應的數據表「主鍵(Primary Key)值」。
 
        //== (3). 自由發揮。
        int RecordsAffected = cmd.ExecuteNonQuery();
        //Response.Write("執行 Update的SQL指令之後,影響了" + RecordsAffected + "列的紀錄。)";
 
        //== (4). 釋放資源、關閉數據庫的連接。
        cmd.Cancel();
 
        if (Conn.State == ConnectionState.Open)   {
            Conn.Close();
            Conn.Dispose(); 
        }
        //==========================================================
 
 
        //----修改、更新完成!!離開「編輯」模式  ----
        GridView1.EditIndex = -1;
        DBInit();
    }
 
 
    //==============================================
    //== GridView的分頁,沒法搭配 DataReader。因此要本身寫分頁!
 
    //protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
    //{   //----分頁 Start----
    //    GridView1.PageIndex = e.NewPageIndex;
    //    DBInit();
    //}
 
 
    //==============================================
    protected void GridView1_ RowEditing(object sender, GridViewEditEventArgs e)
    {   //----編輯模式----
        GridView1.EditIndex = e.NewEditIndex;
        DBInit();
        //----畫面上的GridView,已經事先設定好「DataKeyName」屬性 = id ----
        //----因此編輯時,主鍵id 字段會自動變成「只讀」----
    }
 
    protected void GridView1_ RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
    {   //---離開「編輯」模式----
        GridView1.EditIndex = -1;
        DBInit();
    }
 
 
 
    protected void GridView1_ RowDeleting(object sender, GridViewDeleteEventArgs e)
    {    //----刪除一筆數據
 
        //=== DataReader的寫法 ==========================================
        SqlConnection Conn = new SqlConnection("您本身的連接字符串,或是Web.Config裏面的連接字符串");
        Conn.Open();   //---- 這時候才連結DB
 
        //== (2). 執行SQL指令。
        SqlCommand cmd = new SqlCommand("delete from [test] where [id] = @id", Conn);
        cmd.Parameters.AddWithValue("@id",(int)GridView1.DataKeys[e.RowIndex].Value);
 
        //== (3). 自由發揮。
        int RecordsAffected = cmd.ExecuteNonQuery();
 
        //== (4). 釋放資源、關閉數據庫的連接。
        cmd.Cancel();
        if (Conn.State == ConnectionState.Open)
        {
            Conn.Close();
            Conn.Dispose(); 
        }
        //==========================================================
 
        //----「刪除」已經完成!!記得從新整理畫面,重載資料----
        DBInit();
    }

 

這個範例的程序代碼看來雖然多又雜

但拆解開來,不過是三大主題:

  • 大型控件的 CommandField & 對應的事件(事件裏面的 e,是什麼意思?)
  • .FindControl()方法與 .Controls
  • ADO.NET ( DataReader + DataSet / DataTable)

 

這三個主題要講一成天的課

因此初學者看不懂,纔是「正常的」!由於有不少學問要先搞懂。

 

對應的課程以下:

這也是七週課程裏面的「第三天&第四天」重點!!

遠距教學-- 大型控件徹底解密+ADO.NET實戰範例 (14hr)

 

相關文章&範例:

[習題]上集 Ch 14-4 (Repeater與 ListView版) -- 撰寫ADO.NET DataReader的分頁程序#2(搭配SQL指令 ROW_NUMBER)

[習題]上集 Ch 14-4 撰寫ADO.NET DataReader的分頁程序#3(搭配SQL 2012指令 OFFSET...FETCH)

[讀書心得]資料分頁的優化,以SQL 2012的 OFFSET-FETCH爲例

 

 

[習題]上集 Ch 14-4 (Repeater與 ListView版) -- 撰寫ADO.NET DataReader的分頁程序#2(搭配SQL指令 ROW_NUMBER)

 

GridView自定義分頁樣式#1(如下拉式選單,DropDownList作分頁)與分頁樣版(PagerTemplate)-- TopPagerRow與 BottomPagerRow屬性

 

https://www.youtube.com/watch?v=oY7jd0ABXeM

 ................................................................................................................

 

這位外國朋友每一篇文章與範例,都貼心地附上 YouTube影片教學,實在使人佩服
推薦給你們。
 
相同範例,他改用 EF 來作 GridView CRUD --
 
相關文章
相關標籤/搜索