Using Visio to generate MySQL DDL - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T14:38:06Zhttp://stackoverflow.com/feeds/question/752434http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/752434/using-visio-to-generate-mysql-ddl1Using Visio to generate MySQL DDLaks2009-04-15T16:06:35Z2009-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#16763130Answer by StarWind Software for Using Visio to generate MySQL DDLStarWind Software2009-11-04T20:14:09Z2009-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#16790681Answer by Kevin Peno for Using Visio to generate MySQL DDLKevin Peno2009-11-05T08:16:29Z2009-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>