ExecuteSQLDropTable: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (DropRegistryTable moved to ExecuteSQLDropTable)
(No difference)

Revision as of 15:06, 23 September 2006

This function drops an existing table in the registry.

The actual SQL query that is executed will be the following:

DROP TABLE IF EXISTS <table>

Syntax

nil createRegistryTable ( string table )

Required Arguments

  • table: The table you want to drop.

Returns

The function doesn't return anything.

See Also