博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PowerDesigner PDM 复制comment到name
阅读量:5741 次
发布时间:2019-06-18

本文共 1367 字,大约阅读时间需要 4 分钟。

hot3.png

用PowerDesigner反向工程后,部分数据库的字段/表注释并没有生成到实体的name中去,所以在显示时全是code,非常晦涩,下面的代码可以帮你把注释复制到name部分,非常好用

Option   ExplicitValidationMode = TrueInteractiveMode = im_BatchDim mdl  'the current model'get the current active modelSet mdl = ActiveModelIf   (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 mdlEnd IfPrivate   sub   ProcessFolder(folder)On Error Resume Next      Dim   Tab   'running     table      for   each   Tab   in   folder.tables            if   not   tab.isShortcut   then                  tab.name   =   tab.comment                  Dim col 'running   column                  for each col in tab.columns                  if col.comment="" then                  else                        col.name=   col.comment                  end if                  next            end if      next      Dim  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      Nextend sub

转载于:https://my.oschina.net/jim19770812/blog/299436

你可能感兴趣的文章
PHP安装环境,服务器不支持curl_exec的解决办法
查看>>
fopen打开文件失败的问题
查看>>
jQuery|元素遍历
查看>>
sql语句大全
查看>>
RedHat 6 安装配置Apache 2.2
查看>>
Openstack 安装部署指南翻译系列 之 Manila服务安装(Share Storage)
查看>>
underscore.js学习笔记
查看>>
windows下常用命令
查看>>
1.5编程基础之循环控制_29:数字反转
查看>>
iptables的CLUSTER target与以太网交换机的思想
查看>>
组策略 之 设备安装设置
查看>>
人工智能还能干这些?这8种AI应用你可能意想不到
查看>>
实现Hyper-V 虚拟机在不同架构的处理器间迁移
查看>>
linux根目录下的文件解析
查看>>
简单使用saltstack
查看>>
针对web服务器容灾自动切换方案
查看>>
LTE学习笔记(一)——背景知识
查看>>
突破媒体转码效率壁垒 阿里云首推倍速转码
查看>>
容器存储中那些潜在的挑战和机遇
查看>>
程序员该懂一点儿KPI
查看>>