Table of Contents

Class DbMetaIndex

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

Represents metadata for a database index.

public class DbMetaIndex : DbMetaObject
Inheritance
DbMetaIndex
Inherited Members
Extension Methods

Properties

Columns

Gets or sets the list of column names included in this index.

public string Columns { get; set; }

Property Value

string

DisplayText

Gets a descriptive, formatted string representation of the index metadata.

public override string DisplayText { get; }

Property Value

string

IndexType

Gets or sets the storage structure type of the index (e.g., BTREE, HASH).

public string IndexType { get; set; }

Property Value

string

IsUnique

Gets or sets a value indicating whether the index enforces uniqueness.

public bool IsUnique { get; set; }

Property Value

bool