有没有一种工具可以将数据库模式(SQL DDL)转储为 XML?
我希望从 SQL (Postgres) DDL 自动生成数据库架构的 XML 版本。
是否有任何工具可以帮助从 DDL 转换为 XML?
xml2ddl 声称可以做到这一点,但它无法连接,并且自 2005 年以来似乎不受支持。
I'm looking to automatically generate an XML version of a database schema from SQL (Postgres) DDL.
Are there any tools to help with getting from the DDL to XML?
xml2ddl claims to do this, but it fails to connect and seems unsupported since 2005.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用内置的
table_to_xmlschema
等;请参阅http://www.postgresql.org/ docs/current/static/functions-xml.html#FUNCTIONS-XML-MAPPING。You can use the built-in
table_to_xmlschema
etc.; see http://www.postgresql.org/docs/current/static/functions-xml.html#FUNCTIONS-XML-MAPPING.我立即想到的事情:
Liquibase
Schemaspy
SQL Workbench 的 WbSchemaReport
他们不使用DDL (SQL) 脚本作为输入,但需要数据库连接。
Things that spring immediately to my mind:
Liquibase
Schemaspy
SQL Workbench's WbSchemaReport
They don't use a DDL (SQL) script as input but require a database connection.
您是否还研究过 DbUnit?
Have you also researched DbUnit?