Columns property

Provides a constant for use with the ULConnection.GetSchema(String) that represents the Columns collection.

Syntax
Visual Basic
Public Shared Readonly Property Columns As String
C#
public const string  Columns { get;}
Property value

A string representing the name of the Columns collection.

Example

The following code fills a DataTable with the Columns collection.

' Visual Basic
Dim schema As DataTable = _
  conn.GetSchema( ULMetaDataCollectionNames.Columns )

// C#
DataTable schema =
  conn.GetSchema( ULMetaDataCollectionNames.Columns );
See also