Powerdesigner pdm檢視看不到表註釋comment問題
阿新 • • 發佈:2019-02-09
很久沒有Powerdesigner了,今天安裝了一個逆向工程匯出一個數據庫表結構,發現沒有表字段說明。Display Preferenses-> Table-> Advanced...-> Columns-> List Columns [select]中也沒找到。後面自己增加一個自定義欄位,使用者展示comment.
1、Model->Extensions:新建一個,然後點選箭頭屬性按鈕
2、Profile右鍵,點選Add Metaclasses,然後選擇Column,然後點選OK:
3、選中Column,右鍵選擇New->Extended Attribute,給一個名字,dataType選擇String,選中Computer,選中Read only
4、切換到Get Method Script tab:把原有的程式碼:
%Get% = ""
換成:%Get% = Rtf2Ascii (obj.Comment)
注意:mysql是換成%Get% = Rtf2Ascii (obj.Comment)。
5、再進入Tools->Display Preferences->Table->Advanced->Columns,看看是不是有剛剛我們新建的那個attribute啦,勾選儲存即可完成。zh_comment就是我新建的屬性