簡單實用的DataSet更新資料庫的類+總結(c#)

來源:互聯網
上載者:User
以前經常用sql語句(update)更新資料庫,有使用用起來不是很方便,特別是資料量比較大的情況下(比如資料表)很麻煩~~後來感覺用DataSet更新資料庫是不錯的選擇.於是急著寫了一個用ataSet更新資料庫的類如下:(後面有使用說明,總結)

 

using System;

using System.Data;

using System.Data.SqlClient;

using System.Windows.Forms;

namespace winApplication

{

     public class sqlAccess

     {

         //與SQL Server的連接字串設定

         private string _connString;

         private string _strSql;

 

 

         private SqlCommandBuilder sqlCmdBuilder;

         private DataSet ds = new DataSet();

         private SqlDataAdapter da;

         public sqlAccess(string connString,string strSql)

         {

              this._connString=connString;

         }

 

 

         private SqlConnection GetConn()

         {

              try

              {

                   SqlConnection Connection = new SqlConnection(this._connString);

                   Connection.Open();

                   return Connection;

              }

              catch (Exception ex)

              {

                   MessageBox.Show(ex.Message,"資料庫連接失敗");

                   throw;

              }

         }

 

 

         //根據輸入的SQL語句檢索資料庫資料

         public DataSet SelectDb(string strSql,string strTableName)

         {

              try

              {

              this._strSql = strSql;

              this.da = new SqlDataAdapter(this._strSql,this.GetConn());

              this.ds.Clear();

              this.da.Fill(ds,strTableName);

              return ds;//返回填充了資料的DataSet,其中資料表以strTableName給出的字串命名

              }

              catch (Exception ex)

              {

                   MessageBox.Show(ex.Message,"資料庫操作失敗");

                   throw;

              }

         }

 

 

         //資料庫資料更新(傳DataSet和DataTable的對象)

         public DataSet UpdateDs(DataSet changedDs,string tableName)

         {

              try

              {

              this.da = new SqlDataAdapter(this._strSql,this.GetConn());

              this.sqlCmdBuilder = new SqlCommandBuilder(da);

              this.da.Update(changedDs,tableName);

              changedDs.AcceptChanges();

              return changedDs;//返回更新了的資料庫表

              }

              catch (Exception ex)

              {

                   MessageBox.Show(ex.Message,"資料庫更新失敗");

                   throw;

              }

                    }

使用說明總結:

1. GetConn方法建立一個資料庫連接,返回SqlConnection。

2.使用的select命令中必須包含主鍵,這點大家都知道的!

3. this.da.Fill(ds,strTableName) 填充資料集

4.構造CommandBuilder對象時,將DataAdapter對象作為建構函式參數傳入:

  this.sqlCmdBuilder = new SqlCommandBuilder(da);

5. 在調用UpdateDs()更新資料庫前,請檢查changedDs是否已經被更新過,用changedDs.[tableName] GetChanges() != null;

6.用this.da.Update(changedDs,tableName)方法更新資料,然後調用changedDs.AcceptChanges()才能真正的更新資料庫,調用 changedDs.RejectChanges() 取消更新。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.