DataTypes property

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

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

A string representing the name of the DataTypes collection.

Example

The following code fills a DataTable with the DataTypes collection.

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

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