Click or drag to resize
MdbWriterTCreateIndex Method
Returns instantiated Index object being cast upon specified Column. Represents a non-composite table index.

Namespace: FDF.Common.IO
Assembly: FDF.Common (in FDF.Common.dll) Version: 3.0.0.0
Syntax
public Index CreateIndex(
	Column column,
	string name,
	bool isUnique,
	bool isPrimaryKey
)

Parameters

column
Type: Column
A Column instance.
name
Type: SystemString
Index name.
isUnique
Type: SystemBoolean
True if indexed values are unique, False otherwise.
isPrimaryKey
Type: SystemBoolean
True if index is table's primary key, False otherwise.

Return Value

Type: Index
Remarks