pdm文件name与comment互相同步
Posted wangpeng00700
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pdm文件name与comment互相同步相关的知识,希望对你有一定的参考价值。
1.使用Powerdesigner工具将pdm文件的name同步至comment。
点击Tools->Execute Commands->Edit/Run Scripts
输入脚本:
Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl 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) Dim Tab for each Tab in folder.tables if not tab.isShortcut then tab.comment=tab.name Dim col for each col in tab.columns col.comment=col.name next end if next end sub
点击Run即可。
2.使用Powerdesigner工具将pdm文件的comment同步至name。
点击Tools->Execute Commands->Edit/Run Scripts
输入脚本:
Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl 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) Dim Tab for each Tab in folder.tables if not tab.isShortcut then tab.name=tab.comment Dim col for each col in tab.columns col.name=col.comment next end if next end sub
点击Run即可。
上述两个脚本就可以将pdm里面的name和comment进行互相同步转换了。
以上是关于pdm文件name与comment互相同步的主要内容,如果未能解决你的问题,请参考以下文章
PowerDesigner中NAME和COMMENT的互相转换
双击表,powerdesigner pdm 没有 comment列(no comment)
同步Name到Comment 及 同步 Comment 到Name
PowerDesigner 的mysql PDM 的COMMENT注释