How do i delete all the tables in the schema on Apache Derby DB using JDBC?
|
|
For actual code that does this, check CleanDatabaseTestSetup.java in the Derby test suite section of the Derby distribution: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/CleanDatabaseTestSetup.java?view=markup |
||
|
|
|
|
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). |
||
|
|
|
|
|
||
|
|
|
|
JDBC allows you to solve your task in a database agnostic way:
|
||
|
|
|
|
Do a little method in java in which you execute a
tablename is passed by parameter. And another method in which you loop over a recordset formed by the query
calling the first method. |
||
|
|
|
|
I think most db providers don't allow DROP TABLE * (or similar). I think the best way would be to SHOW TABLES and then go through each deleting in a loop via a resultset. HTH. |
||
|
|
