PowerDesigner根据Excel导入模型
作者:互联网
1.首先通过PowerDesigner创建物理模型;
2.Excel的结构如下:
第一行是表信息,依次是:表编码、表名称、表注释
第二行及后面为列信息,依次是:列编码、列名称、列数据类型、是否必填(M必填、O选填)、列注释
Person | 人员信息 | 记录人员相关信息 | ||
PersonId | 人员编码 | Variable multibyte (40) | M | 人员编码 |
PersonName | 姓名 | Variable multibyte (10) | M | 姓名 |
Resume | 简历 | Variable multibyte (255) | O | 简历 |
Remark | 备注 | Variable multibyte (255) | O | 备注 |
3.执行脚本,弹出 “生成成功”后即创建完成;
' 第一行是表信息,依次是:表编码、表名称、表注释
' 第二行及后面为列信息,依次是:列编码、列名称、列数据类型、是否必填(M必填、O选填)、列注释
' Excel的sheet名称统一为sheet1
'开始
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:\test\import.xlsx" '指定 excel文档路径
x1.Workbooks(1).Worksheets("Sheet1").Activate '指定要打开的sheet名称
Else
HaveExcel = False
End If
a x1, mdl
sub a(x1, mdl)
dim rwIndex
dim tableName
dim colname
dim table
dim col
on error Resume Next
set table = mdl.Tables.CreateNew '创建一个 表实体
For rwIndex = 1 To 1000 '
With x1.Workbooks(1).Worksheets("Sheet1")
If .Cells(rwIndex, 1).Value = "" Then
Exit For
End If
If rwIndex = 1 Then
' 表赋值
table.Code=.Cells(rwIndex, 1).Value
table.Name=.Cells(rwIndex, 2).Value
table.Comment=.Cells(rwIndex, 3).Value
Else
set col = table.Columns.CreateNew '创建一列/字段
col.Code = .Cells(rwIndex, 1).Value
col.Name = .Cells(rwIndex, 2).Value '指定列名
col.DataType = .Cells(rwIndex, 3).Value '指定列数据类型
col.Comment = .Cells(rwIndex, 5).Value '指定列说明
If .Cells(rwIndex, 4).Value = "M" Then
col.Mandatory = true '指定列是否可空 true 为不可空
End If
If rwIndex = 2 Then
'col.Primary = true '指定主键
End If
End If
End With
Next
MsgBox "生成成功"
Exit Sub
End sub
标签:End,Cells,Excel,PowerDesigner,Value,导入,rwIndex,x1,col 来源: https://www.cnblogs.com/LukeSteven/p/16280802.html