How do i delete all the tables in the schema on Apache Derby DB using JDBC?
A simpler solution is to use JDBC to run "drop database foo" then "create database foo". However, this will cause all objects in the DB to be deleted (i.e. not just tables).