powerdesign导出SQL时自动生成注释
内容导读
互联网集市收集整理的这篇技术教程文章主要介绍了powerdesign导出SQL时自动生成注释,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含1113字,纯文字阅读大概需要2分钟。
内容图文

1、使用脚本的方式
在里面运行
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
‘把列name和comment合并为comment
col.comment= col.name
next
end if
next
Dim 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
点击run后
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文:http://blog.csdn.net/zhufeihua111/article/details/46971335
内容总结
以上是互联网集市为您收集整理的powerdesign导出SQL时自动生成注释全部内容,希望文章能够帮你解决powerdesign导出SQL时自动生成注释所遇到的程序开发问题。 如果觉得互联网集市技术教程内容还不错,欢迎将互联网集市网站推荐给程序员好友。
内容备注
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 gblab@vip.qq.com 举报,一经查实,本站将立刻删除。
内容手机端
扫描二维码推送至手机访问。