views:

93

answers:

1

I'm using in-memory derby db for my java application. I would like to delete all the tables/databases it created once the application ends. So when it starts back up, I want it to start fresh.

+1  A: 

If you application uses only a single database connection, then derby global temporary tables would provide what you need.

jsight