Initializes a new instance of the SQLCreateIndex class

Namespace: DatabaseObjects.SQL
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public SQLCreateIndex(
	string strIndexName,
	string strTableName,
	string[] strFieldNames,
	bool bIsUnique
)
Visual Basic
Public Sub New ( _
	strIndexName As String, _
	strTableName As String, _
	strFieldNames As String(), _
	bIsUnique As Boolean _
)
Visual C++
public:
SQLCreateIndex(
	String^ strIndexName, 
	String^ strTableName, 
	array<String^>^ strFieldNames, 
	bool bIsUnique
)

Parameters

strIndexName
Type: System..::..String

[Missing <param name="strIndexName"/> documentation for "M:DatabaseObjects.SQL.SQLCreateIndex.#ctor(System.String,System.String,System.String[],System.Boolean)"]

strTableName
Type: System..::..String

[Missing <param name="strTableName"/> documentation for "M:DatabaseObjects.SQL.SQLCreateIndex.#ctor(System.String,System.String,System.String[],System.Boolean)"]

strFieldNames
Type: array<System..::..String>[]()[][]

[Missing <param name="strFieldNames"/> documentation for "M:DatabaseObjects.SQL.SQLCreateIndex.#ctor(System.String,System.String,System.String[],System.Boolean)"]

bIsUnique
Type: System..::..Boolean

[Missing <param name="bIsUnique"/> documentation for "M:DatabaseObjects.SQL.SQLCreateIndex.#ctor(System.String,System.String,System.String[],System.Boolean)"]

See Also