Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » UltraLite - .NET Programming » UltraLite .NET 2.0 API reference » ULMetaDataCollectionNames class

 

DataSourceInformation property

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

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

A string representing the name of the DataSourceInformation collection.

Example

The following code fills a DataTable with the DataSourceInformation collection.

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

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