DataSet.OnRemoveTable メソッド
アセンブリ: System.Data (system.data.dll 内)



OnRemoveTable メソッドをオーバーライドした DataSet から派生したクラスを次の例に示します。
Public Shared Sub DemonstrateOnRemoveTable() Dim dataSet As DerivedDataSet = CreateDataSet() If dataSet.Tables.Count > 0 Then dataSet.Tables.RemoveAt(0) End Sub Public Class DerivedDataSet Inherits DataSet Protected Overrides Sub OnRemoveTable(table As DataTable) Console.WriteLine( _ "The '{0}' DataTable has been removed from the DataSet", _ table.TableName) End Sub End Class Public Shared Function CreateDataSet() As DerivedDataSet ' Create a DataSet with one table containing two columns. Dim derived As DerivedDataSet = New DerivedDataSet() ' Add table to DataSet. Dim table As DataTable = derived.Tables.Add("Items") ' Add two columns. Dim column As DataColumn = table.Columns.Add("id", _ Type.GetType("System.Int32")) column.AutoIncrement = True table.Columns.Add("item", Type.GetType("System.Int32")) ' Set primary key. table.PrimaryKey = New DataColumn() {table.Columns("id")} return derived End Function
public static void DemonstrateOnRemoveTable() { DerivedDataSet dataSet = CreateDataSet(); if(dataSet.Tables.Count > 0) dataSet.Tables.RemoveAt(0); } public class DerivedDataSet: DataSet { protected override void OnRemoveTable(DataTable table) { Console.WriteLine( "The '{0}' DataTable has been removed from the DataSet", table.TableName); } } public static DerivedDataSet CreateDataSet() { // Create a DataSet with one table containing two columns. DerivedDataSet derived = new DerivedDataSet(); // Add table to DataSet. DataTable table = derived.Tables.Add("Items"); // Add two columns. DataColumn column = table.Columns.Add("id", typeof(int)); column.AutoIncrement = true; table.Columns.Add("item", typeof(int)); // Set primary key. table.PrimaryKey = new DataColumn[] {table.Columns["id"]}; return derived; }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からDataSet.OnRemoveTable メソッドを検索する場合は、下記のリンクをクリックしてください。

- DataSet.OnRemoveTable メソッドのページへのリンク