IndexColumns property

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

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

A string representing the name of the IndexColumns collection.

Example

The following code fills a DataTable with the IndexColumns collection.

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

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