自定义Excel表数据结构导入导出到PowerDesigner

1、Excel表格样式。

在这里插入图片描述

2、打开PowerDesigner,创建物理模型(Physical Data Model)。

在这里插入图片描述

3、在PowerDesigner菜单栏中,依次点击“Tools ->Excute Commands->Edit/Run Script…”。

功能快捷键

Run Script:Ctrl/Shift + X
在这里插入图片描述

导入Script:

Option Explicit   
Dim mdl ' the current model 
Set mdl = ActiveModel 
If (mdl Is Nothing) Then   
  MsgBox "There is no Active Model" 
End If 
  
Dim HaveExcel 
Dim RQ  
RQ = vbYes 'MsgBox("Is Excel Installed on your machine ?", vbYesNo + vbInformation, "Confirmation") 
If RQ = vbYes Then  
   HaveExcel = True  
' Open & Create Excel Document 
 Dim x1 '  
  Set x1 = CreateObject("Excel.Application")
  x1.Workbooks.Open "d:\sheet1.xlsx" 
  x1.Workbooks(1).Worksheets("Sheet1").Activate 
Else
   HaveExcel = False 
End If 
  
a x1, mdl 
  
sub a(x1,mdl) 
dim rwIndex 
dim tableName 
dim colname 
dim table 
dim col 
dim count 
  
'on error Resume Next 
For rwIndex = 1 To 1000 step 1   
    With x1.Workbooks(1).Worksheets("Sheet1")
  'MsgBox "生成数据表结构共计1 ="+CStr(.Cells(2,2).Value ), vbOK + vbInformation, "表" 
   If .Cells(rwIndex, 1).Value = "" Then 
       rwIndex = rwIndex + 1
       IF .Cells(rwIndex, 1).Value = "" then
       Exit For 
       end if
   End If  
  If  .Cells(rwIndex, 3).Value = "" Then 
    set table = mdl.Tables.CreateNew 
        table.Name = .Cells(rwIndex , 1).Value 
        table.Code = .Cells(rwIndex , 2).Value 
        rwIndex  = rwIndex + 1
        count = count + 1  
   Else   
    colName = .Cells(rwIndex, 1).Value 
    set col = table.Columns.CreateNew  
   'MsgBox .Cells(rwIndex, 1).Value, vbOK + vbInformation, "列" 
    col.Name = .Cells(rwIndex, 1).Value 
    'MsgBox col.Name, vbOK + vbInformation, "列"
    col.Code = .Cells(rwIndex, 2).Value 
    col.Comment = .Cells(rwIndex,4).Value  
    col.DataType = .Cells(rwIndex, 3).Value 
   End If 
  End With 
Next 
  
MsgBox "生成数据表结构共计" + CStr(count), vbOK + vbInformation, "表" 
 
Exit Sub 
End sub

其中d:\sheet1.xlsx为你的Excel数据表的路径,可以根据自己目录结构调整;

插入链接与图片

4、从PowerDesigner导出表结构到Excel中,与步骤3操作一致。

Option Explicit
 
   Dim rowsNum
 
   rowsNum = 0
 
'-----------------------------------------------------------------------------
 
' Main function
 
'-----------------------------------------------------------------------------
 
' Get the current active model
 
Dim Model
 
Set Model = ActiveModel
 
If (Model Is Nothing) Or (Not Model.IsKindOf(PdPDM.cls_Model)) Then
 
  MsgBox "The current model is not an PDM model."
 
Else
 
 ' Get the tables collection
 
 '创建EXCEL APP
 
 dim beginrow
 
 DIM EXCEL, SHEET
 
 set EXCEL = CREATEOBJECT("Excel.Application")
 
 EXCEL.workbooks.add(-4167)'添加工作表
 
 EXCEL.workbooks(1).sheets(1).name ="sheet1"
 
 set sheet = EXCEL.workbooks(1).sheets("sheet1")
 
 
 
 ShowProperties Model, SHEET
 
 EXCEL.visible = true
 
 '设置列宽和自动换行
 
 sheet.Columns(1).ColumnWidth = 20 
 
 sheet.Columns(2).ColumnWidth = 40 
 
 sheet.Columns(3).ColumnWidth = 30 
 
 sheet.Columns(4).ColumnWidth = 50 
 
 'sheet.Columns(5).ColumnWidth = 20 
 
 'sheet.Columns(6).ColumnWidth = 15 
 
 sheet.Columns(1).WrapText =true
 
 sheet.Columns(2).WrapText =true
 
 sheet.Columns(4).WrapText =true
 
 End If
 
'-----------------------------------------------------------------------------
 
' Show properties of tables
 
'-----------------------------------------------------------------------------
 
Sub ShowProperties(mdl, sheet)
 
   ' Show tables of the current model/package
 
   rowsNum=0
 
   beginrow = rowsNum+1
 
   ' For each table
 
   output "begin"
 
   Dim tab
 
   For Each tab In mdl.tables
 
      ShowTable tab,sheet
 
   Next
 
   if mdl.tables.count > 0 then
 
        sheet.Range("A" & beginrow + 1 & ":A" & rowsNum).Rows.Group
 
   end if
 
   output "end"
 
End Sub
 
'-----------------------------------------------------------------------------
 
' Show table properties
 
'-----------------------------------------------------------------------------
 
Sub ShowTable(tab, sheet)
 
   If IsObject(tab) Then
 
     Dim rangFlag
 
     rowsNum = rowsNum + 1
 
      ' Show properties
 
      Output "================================"
 
      sheet.cells(rowsNum, 1) = tab.name
 
      sheet.cells(rowsNum, 2) =tab.code
 
      sheet.cells(rowsNum, 3) = ""
 
      'sheet.cells(rowsNum, 4) = "表名"
 
      'sheet.cells(rowsNum, 5) = tab.code
 
      'sheet.Range(sheet.cells(rowsNum, 5),sheet.cells(rowsNum, 6)).Merge
 
      rowsNum = rowsNum + 1
 
      'sheet.cells(rowsNum, 1) = "属性名"
 
      'sheet.cells(rowsNum, 2) = "说明"
 
      'sheet.cells(rowsNum, 3) = ""
 
      sheet.cells(rowsNum, 1) = "字段中文名"
 
      sheet.cells(rowsNum, 2) = "字段名"
 
      sheet.cells(rowsNum, 3) = "字段类型"
      
      sheet.cells(rowsNum, 4) = "注释"
 
      '设置边框
 
      sheet.Range(sheet.cells(rowsNum-1, 1),sheet.cells(rowsNum, 4)).Borders.LineStyle = "1"
 
      'sheet.Range(sheet.cells(rowsNum-1, 4),sheet.cells(rowsNum, 6)).Borders.LineStyle = "1"
 
Dim col ' running column
 
Dim colsNum
 
colsNum = 0
 
      for each col in tab.columns
 
        rowsNum = rowsNum + 1
 
        colsNum = colsNum + 1
 
      'sheet.cells(rowsNum, 1) = col.name
 
      'sheet.cells(rowsNum, 2) = col.comment
 
      'sheet.cells(rowsNum, 3) = ""
 
      sheet.cells(rowsNum, 1) = col.name
 
      sheet.cells(rowsNum, 2) = col.code
 
      sheet.cells(rowsNum, 3) = col.datatype
      
      sheet.cells(rowsNum, 4) = col.comment
 
      next
 
      sheet.Range(sheet.cells(rowsNum-colsNum+1,1),sheet.cells(rowsNum,4)).Borders.LineStyle = "2"       
 
      'sheet.Range(sheet.cells(rowsNum-colsNum+1,4),sheet.cells(rowsNum,6)).Borders.LineStyle = "2"
 
      rowsNum = rowsNum + 1
 
      
 
      Output "FullDescription: "       + tab.Name
 
   End If
 
End Sub

转至https://blog.csdn.net/lin521lh/article/details/78282774

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值