ASP.NET 2.0中DataTable小兵變大將

來源:互聯網
上載者:User

我們先看一段WEB Service的代碼。

[WebMethod]
public DataTable GetInfo()
...{
OleDbConnection nwindConn = new OleDbConnection(
"Provider=Microsoft.Jet.OLEDB.4.0;" +
"Data Source=D:\\Northwind\\northwind.mdb;");
OleDbCommand selectCMD =
new OleDbCommand("SELECT CustomerID, CompanyName FROM Customers"
, nwindConn);
selectCMD.CommandTimeout = 30;
OleDbDataAdapter custDA = new OleDbDataAdapter();
custDA.SelectCommand = selectCMD;
DataSet custDS = new DataSet();
custDA.Fill(custDS, "Customers");
return custDS.Tables[0];
}

在.net 1.1 中,這是典型的一個錯誤,在.net 1.1 、1.0中,WEB Service 的返回或者輸入參數不能是 DataTable,這是一個眾人皆知的知識點。原因就是 DataTable 不象DataSet那樣支援序列化。在.net 1.1中,我們解決這個問題的 方法就是使用DataSet。但是使用DataSet 的時候,經常會有一種殺雞用牛刀的 感覺。

附:.net 1.1 中使用DataTable作為WEB Service 傳回值會報以下異常:

類型 System.ComponentModel.ISite 的成員 System.ComponentModel.MarshalByValueComponent.Site 是介面,因此無法將 其序列化。

在.net 2.0 中,以上同樣的代碼,則沒有任何問題了。原因是2.0中 DataTable實現了序列化、反序列。

在VS2005 Beta2 的文檔中,我們可以看到2.0 中 DataTable實現了以下介面 :

Explicit Interface Implementations
System.ComponentModel.IListSource.get_ContainsListCollection
System.ComponentModel.IListSource.GetList
System.Xml.Serialization.IXmlSerializable.GetSchema
System.Xml.Serialization.IXmlSerializable.ReadXml
System.Xml.Serialization.IXmlSerializable.WriteXml

而在1.1中,DataTable 只實現了一個介面:

Explicit Interface Implementations
System.ComponentModel.IListSource.ContainsListCollection

把DataSet中的一些功能移到 DataTable中,2.0 中還有 Merge 方法,即合 並數個資料集。

DataTable的代碼合并參看下面代碼。

private static void DemonstrateMergeTable()
...{
DataTable table1 = new DataTable("Items");
DataColumn column1 = new DataColumn("id", typeof (System.Int32));
DataColumn column2 = new DataColumn("item", typeof (System.Int32));
table1.Columns.Add(column1);
table1.Columns.Add(column2);
table1.PrimaryKey = new DataColumn[] ...{ column1 };
table1.RowChanged += new System.Data.DataRowChangeEventHandler (Row_Changed);
DataRow row;
for (int i = 0; i <= 3; i++)
...{
row = table1.NewRow();
row["id"] = i;
row["item"] = i;
table1.Rows.Add(row);
}
// Accept changes.
table1.AcceptChanges();
DataTable table2 = table1.Clone();
row = table2.NewRow();
row["id"] = 14;
row["item"] = 774;
table2.Rows.Add(row);
row = table2.NewRow();
row["id"] = 12;
row["item"] = 555;
table2.Rows.Add(row);
row = table2.NewRow();
row["id"] = 13;
row["item"] = 665;
table2.Rows.Add(row);
// Merge table2 into the table1.
table1.Merge(table2);
}

綜合上述,.net 2.0 中 DataTable 從背景默默無問的小兵變成獨當一面 的大將了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.