DROP-VIEW-FROM-CLASS — Delete table from SQL database.
Function
drop-view-from-class view-class-name &key database =>
The name of the View Class.
database object. This will default to the value of *default-database*.
Removes a table defined by the View Class view-class-name from database which defaults to *default-database*.
(list-tables) => ("FOO" "BAR") (drop-view-from-class 'foo) => (list-tables) => ("BAR")
Deletes a table from the SQL database.
Whether the specified table exists in the SQL database.
A condition may be signalled if the table does not exist in the SQL database or if the SQL connection does not have sufficient permissions to delete tables.
None.