This statement removes a table.
DROP TABLE tablename
One of the following error values can be returned:
Dropping a table deletes a database table from the device and destroys all data it contains. It is an irreversible process, so use this statement with care.
Dim rs
Set rs = CreateObject("adoce.recordset")
rs.open "create table allfields (f1 varchar)"
rs.open "allfields"
MsgBox rs.fields.Count, , "Fields"
rs.Close
rs.open "drop table allfields"
Set rs = Nothing