Share via


SqlDataDictionary.tableDrop Method

Definition

Overloads

tableDrop(Int32)

Drops the table in the SQL database.

tableDrop(Int32, Boolean)

tableDrop(Int32)

Drops the table in the SQL database.

public:
 virtual int tableDrop(int num1);
public virtual int tableDrop (int num1);
abstract member tableDrop : int -> int
override this.tableDrop : int -> int
Public Overridable Function tableDrop (num1 As Integer) As Integer

Parameters

num1
Int32

Returns

Zero if the method succeeds.

Applies to

tableDrop(Int32, Boolean)

public:
 virtual int tableDrop(int _tableId, bool _prompt_before_drop);
public virtual int tableDrop (int _tableId, bool _prompt_before_drop);
abstract member tableDrop : int * bool -> int
override this.tableDrop : int * bool -> int
Public Overridable Function tableDrop (_tableId As Integer, _prompt_before_drop As Boolean) As Integer

Parameters

_tableId
Int32

A boolean flag that determines whether to ask user before dropping the table; optional. By default, true.

_prompt_before_drop
Boolean

Returns

Applies to