SqlDataDictionary.indexDrop Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
indexDrop(Int32, Int32, Boolean) | |
indexDrop(Int32, Int32) | |
indexDrop(Int32) | |
indexDrop() |
Drops the indexes of a table in the SQL database. |
indexDrop(Int32, Int32, Boolean)
public:
virtual int indexDrop(int _tableId, int _indexId, bool _onlyNonUnique);
public virtual int indexDrop (int _tableId, int _indexId, bool _onlyNonUnique);
abstract member indexDrop : int * int * bool -> int
override this.indexDrop : int * int * bool -> int
Public Overridable Function indexDrop (_tableId As Integer, _indexId As Integer, _onlyNonUnique As Boolean) As Integer
Parameters
- _tableId
- Int32
- _indexId
- Int32
- _onlyNonUnique
- Boolean
Returns
Applies to
indexDrop(Int32, Int32)
public:
virtual int indexDrop(int num1, int num2);
public virtual int indexDrop (int num1, int num2);
abstract member indexDrop : int * int -> int
override this.indexDrop : int * int -> int
Public Overridable Function indexDrop (num1 As Integer, num2 As Integer) As Integer
Parameters
- num1
- Int32
- num2
- Int32
Returns
Applies to
indexDrop(Int32)
indexDrop()
Drops the indexes of a table in the SQL database.
public:
virtual int indexDrop();
public virtual int indexDrop ();
abstract member indexDrop : unit -> int
override this.indexDrop : unit -> int
Public Overridable Function indexDrop () As Integer
Returns
Zero if the method succeeds.
Remarks
Use 0 for the parameters to indicate all tables or indexes.
The following example demonstrates the indexDrop method.
{
SqlDataDictionary DD = new SqlDataDictionary();
DD.indexDrop(TableName2Id("Address"));
}