Using Visio to generate MySQL DDL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:38:06Z http://stackoverflow.com/feeds/question/752434 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/752434/using-visio-to-generate-mysql-ddl 1 Using Visio to generate MySQL DDL aks 2009-04-15T16:06:35Z 2009-11-05T08:16:29Z <p>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.</p> <p>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.</p> <p>MySQL ODBC driver also changes the BLOB data type to LONGVARBINARY, so it cannot be used directly with MySQL when creating the database.</p> <p>Does anyone have any suggestion how to deal with these two problems?</p> http://stackoverflow.com/questions/752434/using-visio-to-generate-mysql-ddl/1676313#1676313 0 Answer by StarWind Software for Using Visio to generate MySQL DDL StarWind Software 2009-11-04T20:14:09Z 2009-11-04T20:14:09Z <p>BTW, here is a service creating MySQL DDL from Visio diagrams: <a href="http://aboutwhatever.net/posts/visio-2007-database-model-ddl-generation/" rel="nofollow">http://aboutwhatever.net/posts/visio-2007-database-model-ddl-generation/</a></p> <p>Maybe it will help you.</p> http://stackoverflow.com/questions/752434/using-visio-to-generate-mysql-ddl/1679068#1679068 1 Answer by Kevin Peno for Using Visio to generate MySQL DDL Kevin Peno 2009-11-05T08:16:29Z 2009-11-05T08:16:29Z <p>Other than editing it? No.</p> <p>You might consider using <a href="http://wb.mysql.com/" rel="nofollow">MySQL Workbench</a>. 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.</p>