I am new to Apache ofbiz. I went through the tutorial and have deployed the default version of Apache ofbiz. I do understand that the database in Apache ofbiz is by default Derby. While starting the ofbiz I can see that many tables are getting created. However I am not able to view the schema in Apache derby. I need guidance on viewing the database schema.
Asked
Active
Viewed 589 times
0
-
You can use `Data source Explorer` view in `Eclipse` – Rong Nguyen May 11 '15 at 14:21
-
Where to point the schema? – Partha Bisoi May 12 '15 at 05:05
-
1You create new connection with Embedded Derby option. – Rong Nguyen May 12 '15 at 10:22
1 Answers
1
There are many tools you can use to view the schema of an Apache Derby database.
Derby itself offers the "ij" tool, with its "show tables" and "describe" commands.
There are graphical tools, such as Squirrel: http://squirrel-sql.sourceforge.net/
There are programmatic tools, such as the JDBC metadata classes, or the DDLUtils library.

Bryan Pendleton
- 16,128
- 3
- 32
- 56