开发者

How do you delete the default database/schema in hsqldb

开发者 https://www.devze.com 2023-01-01 14:35 出处:网络
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.

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消