How do you delete the default database/schema in hsqldb
I've created an in memory hs开发者_Go百科qldb and am using the default database/schema. Now I want to drop and recreate the database programatically.
How do I do that?
DROP SCHEMA PUBLIC CASCADE
This will purge the public schema. If you create other schemas, use the same command with the schema name instead of PUBLIC.
精彩评论