工具用postgresql生成数据库表图?

前端之家收集整理的这篇文章主要介绍了工具用postgresql生成数据库表图?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有什么免费的工具来生成表格图与postgresql
我爱 schemaspy模式的可视化。看看他们提供的样本输出和流口水。注意标签

你需要下载JDBC driver here,然后你的命令应该看起来像:

java -jar schemaSpy_5.0.0.jar -t pgsql -db database_name -host myhost -u username -p password -o ./schemaspy -dp postgresql-9.3-1100.jdbc3.jar -s public -noads

有时使用选项-port将不工作,如果你的数据库有不同的端口,所以你必须添加手动端口后的主机参数,例如:

java -jar schemaSpy_5.0.0.jar -t pgsql -db database_name -host myhost:myport -u username -p password -o ./schemaspy -dp postgresql-9.3-1100.jdbc3.jar -s public -noads

如果你想要图形(apt-get install graphviz为基于debian的发行版),你还需要安装graphviz。

原文链接:https://www.f2er.com/postgresql/193891.html

猜你在找的Postgre SQL相关文章