Is it possible to executa a command which drops all tables from sql ce database ?
thanks for help
You can use information SCHEMA to generate a script:
select 'drop table ' || table_name || ';'
from information_schema.tables;
Then run that script. You might need to run the script several times, since there is no CASCADE option (AFAIK) in SQLCE.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With