Get a description of the given table's indices and statistics.

Namespace: NHibernate.Dialect.Schema
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
DataTable GetIndexInfo(
	string catalog,
	string schemaPattern,
	string tableName
)
Visual Basic
Function GetIndexInfo ( _
	catalog As String, _
	schemaPattern As String, _
	tableName As String _
) As DataTable
Visual C++
DataTable^ GetIndexInfo(
	String^ catalog, 
	String^ schemaPattern, 
	String^ tableName
)

Parameters

catalog
Type: System..::..String
A catalog, retrieves those without a catalog
schemaPattern
Type: System..::..String
Schema pattern, retrieves those without the schema
tableName
Type: System..::..String
A table name pattern

Return Value

A description of the table's indices available

Remarks

The result is relative to the schema collections "Indexes".

See Also