RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IndexesColumns Class

Provides the column names for the result table from the built-in stored procedure DB_ADMIN.GET_INDEXES and DataStoreConnection.GetSchema(MetaDataCollectionName.IndexColumns).

Pascal
IndexesColumns = class;
C++
class IndexesColumns;

IndexesColumns.cs

IndexesColumns provides the column names for the result table from the built-in stored procedure DB_ADMIN.GET_INDEXES and DataStoreConnection.GetSchema(MetaDataCollectionName.IndexColumns). Each row in the result table of DB_ADMIN.GET_INDEXES describes a column in an index in a database.  

The columns of the result table are:

Constant 
Description 
Used to access the CatalogName column in the Indexes metadata collection. The data in this column specifies the catalog name.  
Used to access the SchemaName column in the Indexes metadata collection. The data in this column specifies the schema name.  
Used to access the TableName column in the Indexes metadata collection. The data in this column specifies the table name.  
Used to access the IndexName column in the Indexes metadata collection. The data in this column specifies the index name.  
Used to access the ConstraintName column in the Indexes metadata collection. The data in this column specifies the constraint name, may be NULL.  
Used to access the IsPrimary column in the Indexes metadata collection. The data in this column specifies that the index is the primary key of the table.  
Used to access the IsUnique column in the Indexes metadata collection. The data in this column specifies that the index is an unique index of the table.  
Used to access the IsAscending column in the Indexes metadata collection. The data in this column specifies that the index is a descending index (Interbase only).  

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!