如何查看 Apache ofbiz 中配置的 Apache Derby 架构

How to view Apache Derby schema configured in Apache ofbiz

我是 Apache ofbiz 的新手。我完成了教程并部署了 Apache ofbiz 的默认版本。我知道 Apache ofbiz 中的数据库默认是 Derby。在启动 ofbiz 时,我可以看到正在创建许多表。 但是我无法在 Apache derby 中查看架构。我需要有关查看数据库模式的指导。

您可以使用许多工具来查看 Apache Derby 数据库的模式。

Derby 本身提供了 "ij" 工具及其 "show tables" 和 "describe" 命令。

有图形工具,比如松鼠:http://squirrel-sql.sourceforge.net/

有编程工具,例如 JDBC 元数据 类 或 DDLUtils 库。