Share via


SqlDataDictionary.tableExist Method

Definition

Overloads

tableExist(String, Boolean)
tableExist(String)

Returns true if table exists; otherwise false.

tableExist(String, Boolean)

public:
 virtual bool tableExist(System::String ^ _sqltablename, bool _use_within_transaction);
public virtual bool tableExist (string _sqltablename, bool _use_within_transaction);
abstract member tableExist : string * bool -> bool
override this.tableExist : string * bool -> bool
Public Overridable Function tableExist (_sqltablename As String, _use_within_transaction As Boolean) As Boolean

Parameters

_sqltablename
String

A boolean flag that determines whether transactions are to be used; optional. By default, false.

_use_within_transaction
Boolean

Returns

Applies to

tableExist(String)

Returns true if table exists; otherwise false.

public:
 virtual bool tableExist(System::String ^ text1);
public virtual bool tableExist (string text1);
abstract member tableExist : string -> bool
override this.tableExist : string -> bool
Public Overridable Function tableExist (text1 As String) As Boolean

Parameters

text1
String

Returns

true if the table exists; otherwise, false.

Applies to