我需要能够从位于.mwb文件中的模型执行正向工程。所有这一切都来自命令行,因为我希望自动化该过程。
任何人都可以告诉我这是否可行,如果可能的话怎么办?
答案 0 :(得分:5)
使用--help
调用WB后,这是命令行中的输出:
mysql-workbench [<options>] [<model file>]
Options:
--force-sw-render Force Xlib rendering
--force-opengl-render Force OpenGL rendering
--query <connection> Open a query tab to the named connection
--admin <instance> Open a administration tab to the named instance
--model <model file> Open the given EER model file
--script <script file> Execute the given Python or Lua script file
--run <script> Execute the given code in default language for GRT shell
--run-python <script> Execute the given code in Python
--run-lua <script> Execute the given code in Lua
--quit-when-done Quit Workbench when the script is done
--help, -h Show command line options and exit
--log-level=<level> Valid levels are: error, warning, info, debug1, debug2, debug3
--verbose Enable diagnostics output
--version Show Workbench version number and exit
我猜您可以使用--model
选项加载模型,然后创建一个脚本来执行正向工程并使用--run
选项运行它,然后指示WB一旦完成就退出--quit-when-done
选项。
您可以参考WB帮助以了解有关创建脚本的更多信息以及this guide。
答案 1 :(得分:3)
您实际上可以使用Python(或Lua)脚本自动完成此任务--MySQL Workbench已经在Scripting
菜单下有一个解释器。创建一个新脚本并使用存根:
# -*- coding: utf-8 -*-
import os
import grt
from grt.modules import DbMySQLFE
c = grt.root.wb.doc.physicalModels[0].catalog
DbMySQLFE.generateSQLCreateStatements(c, c.version, {
'GenerateDrops' : 1,
'GenerateSchemaDrops' : 1,
'OmitSchemata' : 1,
'GenerateUse' : 1
})
DbMySQLFE.generateSQLCreateStatements(c, c.version, {
DbMySQLFE.createScriptForCatalogObjects(os.path.dirname(grt.root.wb.docPath) + 'ddl.sql', c, {})
它不会从命令行运行,但我相信你可以使用--run-script
选项运行它。
答案 2 :(得分:3)
这个问题太旧了,但是我在github上发现了一个项目,它在cmd windows中的命令下面,this question github存储库和更多linux sh文件版本。
窗
@echo off
REM generate sql from mwb
REM usage: mwb2sql.bat {.mwb file} {output file}
SET WORKBENCH="C:\Program Files (x86)\MySQL\MySQL Workbench 6.0 CE\MySQLWorkbench.exe"
SET OUTPUT=%~f2
%WORKBENCH% ^
-open %~f1 ^
-run-python "import os;import grt;from grt.modules import DbMySQLFE as fe;c = grt.root.wb.doc.physicalModels[0].catalog;fe.generateSQLCreateStatements(c, c.version, {});fe.createScriptForCatalogObjects(os.getenv('OUTPUT'), c, {})" ^
-quit-when-done