Provides a constant for use with the ULConnection.GetSchema(String) that represents the Tables collection.
Visual Basic
Public Shared Readonly Property Tables As String
C#
public const string Tables { get;}
A string representing the name of the Tables collection.
The following code fills a DataTable with the Tables collection.
' Visual Basic Dim schema As DataTable = _ conn.GetSchema( ULMetaDataCollectionNames.Tables ) // C# DataTable schema = conn.GetSchema( ULMetaDataCollectionNames.Tables );