開發工具 之 PowerDesigner 應用積累

2021-09-06 22:23:29 字數 1893 閱讀 3891

1.在預設情況下,code與name是聯動,修改了name中的資料。

解決方法:設定選單欄選擇"tools→general options→dialog"  中的 "name to code mirroring" 去掉勾選 。

2.匯出的sql語句無欄位注釋。

解決方法:將下面的指令碼拷貝到 powerdesigner→tools→execute commands→edit/run scripts,然後run,再匯出就有注釋了。

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

notan physical data model. "

else

processfolder mdl

endif

'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

endif

next

dim

view

'running view

for each view in folder.views

if not view.isshortcut then

view.comment = view.name

end if

next

'gointo 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

IOS開發工具介紹之Xcode開發工具使用

專家 麥子學院特約授課老師柯博文 ios開發入門實戰 向我們詳細的講述了ios開發 實戰過程。xcode開發工具是ios開發的流程使用範圍最廣的工具。在所有課程開始之前,柯博文老師先教會我們認識xcode。把xcode工具使用作為這節課的重點,現在我們將其做乙個簡要的歸納。定製工作區間 柯博文老師在...

IOS開發之網路開發工具

ios開發之網路開發工具 網路檢測 void reachabilitymanager 停止網路監聽 若須要一直檢測網路狀態,能夠不停止,使其一直執行 manager.reachabilitymanager stopmonitoring get請求資料 pragma mark get request ...

java開發工具之Intellij idea

自從踏入程式設計師這個職位以來,使用的編輯工具無數,總有一款是自己的歸宿,本碼農最愛的ide就是intellij idea了,為何這麼說,呆會再細細說來。說說本人使用ide歷史發展 記事本 個把月 ue 半年 nodepad 半年 eclipse 半年 myeclipse 1年 eclipse 1年...