Delete (DROP) table from database

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

C#
public bool Delete(
	string tableName
)
Visual Basic
Public Function Delete ( _
	tableName As String _
) As Boolean
Visual C++
public:
bool Delete(
	String^ tableName
)

Parameters

tableName
Type: System..::..String
Table name to delete

Return Value

bool

Remarks

First checks if table exists. If so, will not perform operation

See Also