table delete, table delete silently
This function deletes tables entirely. The function table delete silently suppresses exceptions in case the table names are no longer existing.
Indirect parameter passing is enabled
Min. 1
No. | Type | Description |
---|---|---|
Min. 1 input |
string | name of existing table Names of existing tables are expected. |
echo("Create and delete tables");
table create( a );
table delete silently ( a, b ); // 'b' does not exist, but done silently.
Create and delete tables