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

SQL Anywhere 11.0.1 (日本語) » Ultra Light - .NET プログラミング » Ultra Light .NET 2.0 API リファレンス » ULMetaDataCollectionNames クラス

 

Indexes プロパティ

Indexes コレクションを表す ULConnection.GetSchema(String) で使用する定数を提供します。

構文
Visual Basic
Public Shared Readonly Property Indexes As String
C#
public const string  Indexes { get;}
プロパティ値

Indexes コレクションの名前を表す文字列。

次のコードは、Indexes コレクションを使用して DataTable を設定します。

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

// C#
DataTable schema =
  conn.GetSchema( ULMetaDataCollectionNames.Indexes );
参照