powerdesign实用技巧

前端之家收集整理的这篇文章主要介绍了powerdesign实用技巧前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

导出的建表脚本表名出现引号
================================
是因为在powerdesign的设置问题,点在菜单Database>Edit Current DBMS...后,在弹出窗口左边的树中找到

Script>sql>Format>CaseSensitivityUsingQuote,把该值设为false便可以了。

powerdesign导出name作为comment

================================

首先打开PDM,tools->execute commands->edit/run script
运行以下脚本,将name拷贝为comment
Vb代码
  1. OptionExplicit
  2. ValidationMode=True
  3. InteractiveMode=im_Batch
  4. Dimmdl'thecurrentmodel
  5. 'getthecurrentactivemodel
  6. Setmdl=ActiveModel
  7. If(mdlIsNothing)Then
  8. MsgBox"ThereisnocurrentModel"
  9. ElseIfNotmdl.IsKindOf(PdPDM.cls_Model)Then
  10. MsgBox"ThecurrentmodelisnotanPhysicalDatamodel."
  11. Else
  12. ProcessFoldermdl
  13. EndIf
  14. 'Thisroutinecopynameintocodeforeachtable,eachcolumnandeachview
  15. 'ofthecurrentfolder
  16. PrivatesubProcessFolder(folder)
  17. DimTab'runningtable
  18. foreachTabinfolder.tables
  19. ifnottab.isShortcutthen
  20. tab.comment=tab.name
  21. Dimcol'runningcolumn
  22. foreachcolintab.columns
  23. col.comment=col.name
  24. next
  25. endif
  26. next
  27. endsub
然后在database->generate database->options->table&column中分别选中table和column的coment,导出表的时候,即可导出comment
原文链接:https://www.f2er.com/vb/261810.html

猜你在找的VB相关文章