当前位置: 首页 > news >正文

PowerDesigner 与 mysql 同步数据

PowerDesigner 连接上数据库
创建数据库表 table_5
在这里插入图片描述
在这里插入图片描述
选择:

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
点击确认后弹出
在这里插入图片描述
点击run执行

刷新数据库表,已创建成功
在这里插入图片描述
修改测试表1,新增一个字段
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
取消全选
在这里插入图片描述
选择数据库,勾选修改的表,如果全部勾选的话,就会全部同步
在这里插入图片描述
在这里插入图片描述
就同步出来了
在这里插入图片描述

其他:打开注释
双击表打开表详情 ,选择columns
在这里插入图片描述
快捷键: Ctrl+U 找到注释并勾选
在这里插入图片描述
然后就出来:
在这里插入图片描述
一般注释与Name应该是联动的,所以可以执行脚本:
在PowerDesigner中打开脚本的方法为:
PowerDesigner->Tools->Execute Commands->Edit/Run Scripts

1 将comment覆盖name

Option   Explicit 
ValidationMode   =   True 
InteractiveMode   =   im_Batch
Dim   mdl   '   the   current   model
'   get   the   current   active   model 
Set   mdl   =   ActiveModel 
If   (mdl   Is   Nothing)   Then MsgBox   "There   is   no   current   Model " 
ElseIf   Not   mdl.IsKindOf(PdPDM.cls_Model)   Then MsgBox   "The   current   model   is   not   an   Physical   Data   model. " 
Else ProcessFolder   mdl 
End   If
Private   sub   ProcessFolder(folder) 
On Error Resume NextDim   Tab   'running     table for   each   Tab   in   folder.tables if   not   tab.isShortcut   then tab.name   =   tab.commentDim   col   '   running   column for   each   col   in   tab.columns if col.comment="" thenelsecol.name=   col.comment end ifnext end   if nextDim   view   'running   view for   each   view   in   folder.Views if   not   view.isShortcut   then view.name   =   view.comment end   if next'   go   into   the   sub-packages Dim   f   '   running   folder For   Each   f   In   folder.Packages if   not   f.IsShortcut   then ProcessFolder   f end   if Next 
end   sub

2 将name覆盖comment

Option   Explicit 
ValidationMode   =   True 
InteractiveMode   =   im_Batch
Dim   mdl   '   the   current   model
'   get   the   current   active   model 
Set   mdl   =   ActiveModel 
If   (mdl   Is   Nothing)   Then MsgBox   "There   is   no   current   Model " 
ElseIf   Not   mdl.IsKindOf(PdPDM.cls_Model)   Then MsgBox   "The   current   model   is   not   an   Physical   Data   model. " 
Else ProcessFolder   mdl 
End   If
'   This   routine   copy   name   into   comment   for   each   table,   each   column   and   each   view 
'   of   the   current   folder 
Private   sub   ProcessFolder(folder) Dim   Tab   'running     table for   each   Tab   in   folder.tables if   not   tab.isShortcut   then tab.comment   =   tab.name Dim   col   '   running   column for   each   col   in   tab.columns col.comment=   col.name next end   if nextDim   view   'running   view for   each   view   in   folder.Views if   not   view.isShortcut   then view.comment   =   view.name end   if next'   go   into   the   sub-packages Dim   f   '   running   folder For   Each   f   In   folder.Packages if   not   f.IsShortcut   then ProcessFolder   f end   if Next 
end   sub

将code覆盖name

OPTION   Explicit 
ValidationMode   =   TRUE 
InteractiveMode   =   im_Batch
Dim   mdl   '   the   current   model
'   get   the   current   active   model 
SET   mdl   =   ActiveModel 
IF   (mdl   IS   Nothing)   THEN MsgBox   "There   is   no   current   Model " 
ELSEIF   NOT   mdl.IsKindOf(PdPDM.cls_Model)   THEN MsgBox   "The   current   model   is   not   an   Physical   Data   model. " 
ELSE ProcessFolder   mdl 
END   IF
Private   sub   ProcessFolder(folder) 
ON Error RESUME NEXTDim   Tab   'running     table for   each   Tab   in   folder.tables if   not   tab.isShortcut   then tab.name   =   tab.codeDim   col   '   running   COLUMN FOR   EACH   col   IN   tab.columns IF col.code="" THENELSEcol.name=   col.code END IFNEXT END   IF NEXTDim   VIEW   'running   view for   each   view   in   folder.Views if   not   view.isShortcut   then view.name   =   view.code end   if next'   go   INTO   the   sub-packages Dim   f   '   running   folder For   Each   f   In   folder.Packages if   not   f.IsShortcut   then ProcessFolder   f end   if Next 
end   sub

注释联动脚本参考:PowerDesigner设计Name和注释相互替换

http://www.lryc.cn/news/170726.html

相关文章:

  • [python 刷题] 271 Encode and Decode Strings
  • [QT]day3
  • 《PostgreSQL事务管理深入解析》
  • 深度分析Oracle中的NULL
  • Python入门教学——类和对象
  • 【数据库系统概论】关系数据库中的关系数据结构
  • LabVIEW对Table中同一行数据分多次增加
  • 微信小程序实现删除功能
  • 整合Shiro+Jwt
  • Python 图形化界面基础篇:创建工具栏
  • 基于matlab实现的卡尔曼滤波匀加速直线运动仿真
  • windows Visual Studio 2022 opengl开发环境配置
  • 中国财政科学研究院党委书记、院长刘尚希一行莅临麒麟信安调研
  • 基于element-ui的年份范围选择器
  • 【已解决】您所使用的密钥ak有问题,不支持jsapi服务,可以访问该网址了解如何获取有效密钥。
  • JS操作数组方法学习系列(1)
  • 翻牌闯关游戏
  • CilckHouse创建表
  • 高级运维学习(八)Ceph 概述与部署
  • 【图像处理】VS编译opencv源码,并调用编译生成的库
  • STM32 EtherCAT 总线型(1 拖 4)步进电机解决方案
  • Postman应用——测试脚本Test Script
  • JS的网络状态以及强网弱网详解
  • 大数据-kafka学习笔记
  • 详述RPA项目管理流程,RPA项目管理流程是什么?
  • 爬虫 — Js 逆向
  • Python 网络爬取的时候使用那种框架
  • CentOS7安装源设置
  • pool = multiprocessing.Pool()报错:module object has no attribute Pool
  • Linux Shell 实现一键部署podman