Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DataTable.TableName Property

Definition

Namespace:
System.Data
Assemblies:
netstandard.dll, System.Data.Common.dll
Assembly:
System.Data.Common.dll
Assembly:
System.Data.dll
Assembly:
netstandard.dll
Source:
DataTable.cs
Source:
DataTable.cs
Source:
DataTable.cs
Source:
DataTable.cs
Source:
DataTable.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the name of the DataTable.

public:
 property System::String ^ TableName { System::String ^ get(); void set(System::String ^ value); };
public string TableName { get; set; }
[System.Data.DataSysDescription("DataTableTableNameDescr")]
public string TableName { get; set; }
member this.TableName : string with get, set
[<System.Data.DataSysDescription("DataTableTableNameDescr")>]
member this.TableName : string with get, set
Public Property TableName As String

Property Value

The name of the DataTable.

Attributes

Exceptions

null or empty string ("") is passed in and this table belongs to a collection.

The table belongs to a collection that already has a table with the same name. (Comparison is case-sensitive).

Examples

The following example prints the TableName for each table in a collection of DataTable objects.

private void GetTableNames(DataSet dataSet)
{
 // Print each table's TableName.
 foreach(DataTable table in dataSet.Tables)
 {
 Console.WriteLine(table.TableName);
 }
}
Private Sub GetTableNames(dataSet As DataSet)
 ' Print each table's TableName.
 Dim table As DataTable
 For Each table In dataSet.Tables
 Console.WriteLine(table.TableName)
 Next table
End Sub

Remarks

The TableName is used to return this table from the parent DataSet object's DataTableCollection (returned by the Tables property).

Applies to

See also


Feedback

Was this page helpful?