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

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULMetaDataCollectionNames class

Restrictions property Next Page

Tables property


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

Syntax

Visual Basic

Public Shared Readonly Property Tables As String

C#

public const string Tables { get;}

Property value

A string representing the name of the Tables collection.

Example

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 );
See also