Does anyone know if it is possible to delete tables using SQL queries with ADO?
VB Code: cn.Execute "DROP TABLE Table1" cn = connection object
cn.Execute "DROP TABLE Table1"
-= a peet post =-
yes u can dierectly execute the drop table query as : connection.execute("drop table yourtablename") the table will be deleted.
Your attitude determines your altitude!!!
thnx!
Forum Rules