ExecuteSQLDropTable

From Multi Theft Auto: Wiki
Revision as of 18:32, 22 September 2006 by IJs (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function drops an existing table in the registry.

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

DROP TABLE <table>

Syntax

bool createRegistryTable ( string table )

Required Arguments

  • table: The table you want to drop.

Returns

The function returns a boolean which is true on success, and false on failure.

See Also