使用Visio生成MySQL DDL
我在 MS Visio 中创建了一个数据库模型图,我想将其导出到 DDL 文件以创建 MySQL 数据库。 我已经安装了 MySQL ODBC 驱动程序,我可以成功地使用它来生成 DDL 文件,但无论如何我还是有一些问题。
Visio 在表名称两边加上引号,这些表名称也是保留字(如 user)。 这是不行的,因为 MySQL 为此使用反引号 (`) 而不是引号 (")。MySQL
ODBC 驱动程序还将 BLOB 数据类型更改为 LONGVARBINARY,因此在创建数据库时不能直接与 MySQL 一起使用。
有人知道吗?有什么建议如何处理这两个问题吗?
I have a database model diagram created in MS Visio which I would like to export to DDL file to create a MySQL database. I've already installed the MySQL ODBC driver, which I can successfully use to generate DDL file, but I have some problems anyway.
Visio puts quotation marks around the table names which are also reserved words (like user). This is not OK, since MySQL uses backticks (`) and not quotation marks (") for this purpose.
MySQL ODBC driver also changes the BLOB data type to LONGVARBINARY, so it cannot be used directly with MySQL when creating the database.
Does anyone have any suggestion how to deal with these two problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了编辑还可以吗? 不。
您可以考虑使用 MySQL Workbench。 如果您在设计模式下创建所有内容,它与 visio 非常相似。 此外,使用付费版本,您还可以生成 pdf 文档进行分发(或将该 PDF 放入 visio 中的流程图等),或者您可以创建一个插件,在输出时生成有效的 visio 文件,因为工作台是可通过插件完全扩展。
Other than editing it? No.
You might consider using MySQL Workbench. It is very similar to visio if you create everything in design mode. Additionally, with the paid version you can generate a pdf document as well for distribution (or plop that PDF into the flow chart diagrams, etc in visio) or you could possibly create a plugin that would generate a valid visio file on output since workbench is fully extensible via plugins.