DataSet.OnRemoveTable Method
.NET Framework 3.5
Namespace:
System.Data
Assembly: System.Data (in System.Data.dll)
Assembly: System.Data (in System.Data.dll)
The following example shows a class derived from the DataSet with the OnRemoveTable method overridden.
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
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.