程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> SqlConnection,SqlCommand,SqlReader,SqlDataAdaper的用法總結!!

SqlConnection,SqlCommand,SqlReader,SqlDataAdaper的用法總結!!

編輯:.NET實例教程
SqlConnection con = new SqlConnection("server=ZMQHBD2007;database=data;uid=sa;pwd=123;");
            //上面這句等價於:
            //private static string constring="server=ZMQHBD2007;database=data;uid=sa;pwd=123;";
            //SqlConnection con = new SqlConnection();
            //con.ConnectionString = constring;
       con.Open();
       SqlDataAdapter sda = new SqlDataAdapter("select * from category", con);
           //上面這句等價於:
           //string cmd= "select * from category";
           // SqlDataAdapter sda = new SqlDataAdapter(cmd,con);
       DataSet ds = new DataSet();
       sda.Fill(ds, "category");
           //下面這5個語句等價
           //this.GridVIEw1.DataSource = ds;
           //this.GridVIEw1.DataSource = ds.Tables[0];
           //this.GridVIEw1.DataSource = ds.Tables["customers"];
           //this.GridView1.DataSource = ds.Tables[0].DefaultVIEw;
        this.GridView1.DataSource = ds.Tables["category"].DefaultVIEw;
        this.GridVIEw1.DataBind();
        con.Close();

利用SqlConnection、SqlDataAdapter和DataSet實現表內容在GridVIEw中顯示。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved