ExecuteSQLDropTable
Jump to navigation
Jump to search
This function drops a table in the registry. This function doesn't do anything when the table doesn't exist.
The executed SQL query is the following:
[sql]DROP TABLE IF EXISTS <table>
Syntax
nil executeSQLDropTable ( string table )
Required Arguments
- table: The name of the table you want to drop.
Returns
The function doesn't return anything.
See Also