PowerDesigner导出表为Excel(转)

打开脚本运行器Ctrl+Shift+X

导出:

'******************************************************************************
Option ExplicitDim rowsNumrowsNum = 0
'-----------------------------------------------------------------------------
' Main function
'-----------------------------------------------------------------------------
' Get the current active modelDim ModelSet Model = ActiveModelIf (Model Is Nothing) Or (Not Model.IsKindOf(PdPDM.cls_Model)) ThenMsgBox "The current model is not an PDM model."Else' Get the tables collection'创建EXCEL APPdim beginrowDIM EXCEL, SHEET, SHEETLISTset EXCEL = CREATEOBJECT("Excel.Application")EXCEL.workbooks.add(-4167)'添加工作表EXCEL.workbooks(1).sheets(1).name ="表结构"set SHEET = EXCEL.workbooks(1).sheets("表结构")EXCEL.workbooks(1).sheets.addEXCEL.workbooks(1).sheets(1).name ="目录"set SHEETLIST = EXCEL.workbooks(1).sheets("目录")ShowTableList Model,SHEETLISTShowProperties Model, SHEET,SHEETLISTEXCEL.workbooks(1).Sheets(2).SelectEXCEL.visible = true'设置列宽和自动换行sheet.Columns(1).ColumnWidth = 20 sheet.Columns(2).ColumnWidth = 20 sheet.Columns(3).ColumnWidth = 20 sheet.Columns(4).ColumnWidth = 40 sheet.Columns(5).ColumnWidth = 10 sheet.Columns(6).ColumnWidth = 10 sheet.Columns(1).WrapText =truesheet.Columns(2).WrapText =truesheet.Columns(4).WrapText =true'不显示网格线EXCEL.ActiveWindow.DisplayGridlines = FalseEnd If
'-----------------------------------------------------------------------------
' Show properties of tables
'-----------------------------------------------------------------------------
Sub ShowProperties(mdl, sheet,SheetList)' Show tables of the current model/packagerowsNum=0beginrow = rowsNum+1Dim rowIndex rowIndex=3' For each tableoutput "begin"Dim tabFor Each tab In mdl.tablesShowTable tab,sheet,rowIndex,sheetListrowIndex = rowIndex +1Nextif mdl.tables.count > 0 thensheet.Range("A" & beginrow + 1 & ":A" & rowsNum).Rows.Groupend ifoutput "end"
End Sub
'-----------------------------------------------------------------------------
' Show table properties
'-----------------------------------------------------------------------------
Sub ShowTable(tab, sheet,rowIndex,sheetList)If IsObject(tab) ThenDim rangFlagrowsNum = rowsNum + 1' Show propertiesOutput "================================"sheet.cells(rowsNum, 1) =tab.namesheet.cells(rowsNum, 1).HorizontalAlignment=3sheet.cells(rowsNum, 2) = tab.code'sheet.cells(rowsNum, 5).HorizontalAlignment=3'sheet.cells(rowsNum, 6) = ""'sheet.cells(rowsNum, 7) = "表说明"sheet.cells(rowsNum, 3) = tab.comment'sheet.cells(rowsNum, 8).HorizontalAlignment=3sheet.Range(sheet.cells(rowsNum, 3),sheet.cells(rowsNum, 7)).Merge'设置超链接,从目录点击表名去查看表结构'字段中文名    字段英文名    字段类型    注释    是否主键    是否非空    默认值sheetList.Hyperlinks.Add sheetList.cells(rowIndex,2), "","表结构"&"!B"&rowsNumrowsNum = rowsNum + 1sheet.cells(rowsNum, 1) = "字段中文名"sheet.cells(rowsNum, 2) = "字段英文名"sheet.cells(rowsNum, 3) = "字段类型"sheet.cells(rowsNum, 4) = "注释"sheet.cells(rowsNum, 5) = "是否主键"sheet.cells(rowsNum, 6) = "是否非空"sheet.cells(rowsNum, 7) = "默认值"'设置边框sheet.Range(sheet.cells(rowsNum-1, 1),sheet.cells(rowsNum, 7)).Borders.LineStyle = "1"'sheet.Range(sheet.cells(rowsNum-1, 4),sheet.cells(rowsNum, 9)).Borders.LineStyle = "1"'字体为10号sheet.Range(sheet.cells(rowsNum-1, 1),sheet.cells(rowsNum, 7)).Font.Size=10Dim col ' running columnDim colsNumcolsNum = 0for each col in tab.columnsrowsNum = rowsNum + 1colsNum = colsNum + 1sheet.cells(rowsNum, 1) = col.name'sheet.cells(rowsNum, 3) = ""'sheet.cells(rowsNum, 4) = col.namesheet.cells(rowsNum, 2) = col.codesheet.cells(rowsNum, 3) = col.datatypesheet.cells(rowsNum, 4) = col.commentIf col.Primary = true Thensheet.cells(rowsNum, 5) = "Y" Elsesheet.cells(rowsNum, 5) = " " End IfIf col.Mandatory = true Thensheet.cells(rowsNum, 6) = "Y" Elsesheet.cells(rowsNum, 6) = " " End Ifsheet.cells(rowsNum, 7) =  col.defaultvaluenextsheet.Range(sheet.cells(rowsNum-colsNum+1,1),sheet.cells(rowsNum,7)).Borders.LineStyle = "3"       'sheet.Range(sheet.cells(rowsNum-colsNum+1,4),sheet.cells(rowsNum,9)).Borders.LineStyle = "3"sheet.Range(sheet.cells(rowsNum-colsNum+1,1),sheet.cells(rowsNum,7)).Font.Size = 10rowsNum = rowsNum + 2Output "FullDescription: "       + tab.NameEnd IfEnd Sub
'-----------------------------------------------------------------------------
' Show List Of Table
'-----------------------------------------------------------------------------
Sub ShowTableList(mdl, SheetList)' Show tables of the current model/package
   Dim rowsNorowsNo=1' For each tableoutput "begin"SheetList.cells(rowsNo, 1) = "主题"SheetList.cells(rowsNo, 2) = "表中文名"SheetList.cells(rowsNo, 3) = "表英文名"SheetList.cells(rowsNo, 4) = "表说明"rowsNo = rowsNo + 1SheetList.cells(rowsNo, 1) = mdl.nameDim tabFor Each tab In mdl.tablesIf IsObject(tab) ThenrowsNo = rowsNo + 1SheetList.cells(rowsNo, 1) = ""SheetList.cells(rowsNo, 2) = tab.nameSheetList.cells(rowsNo, 3) = tab.codeSheetList.cells(rowsNo, 4) = tab.commentEnd IfNextSheetList.Columns(1).ColumnWidth = 20 SheetList.Columns(2).ColumnWidth = 20 SheetList.Columns(3).ColumnWidth = 30 SheetList.Columns(4).ColumnWidth = 60 output "end"
End Sub

导入:

'******************************************************************************
'开始
Option Explicit
Dim tab_name,tab_code,tab_comment
Dim b_r, e_r, s_r, j, m, n
Dim mdl ' the current model
dim count
Dim HaveExcel
Dim RQ
Dim file_name,WScript
Set mdl = ActiveModel
If (mdl Is Nothing) ThenMsgBox "There is no Active Model"
End If
RQ = vbYes 'MsgBox("Is Excel Installed on your machine ?", vbYesNo + vbInformation, "Confirmation")
If RQ = vbYes ThenHaveExcel = True' Open & Create Excel Document
ElseHaveExcel = False
End If
file_name = selectFile() 
if file_name <> "" thenDim x1  'Set x1 = CreateObject("Excel.Application")x1.Workbooks.Open file_name    '指定excel文档路径x1.Workbooks(1).Worksheets("表结构").Activate   '指定要打开的sheet名称
j = 1
do while n < 11
if x1.Workbooks(1).Worksheets("表结构").cells(j,1).value <> "" then
call a(x1, mdl, j, getRow(x1, j))
'msgbox j & "--" & getRow(x1, j)
count = count + 1
j = getRow(x1, j)
n = 0
end if
j = j + 1
n = n + 1
loop
'MsgBox "生成数据表结构共计 " + CStr(count), vbOK + vbInformation, "表 导入完毕!"
MsgBox "生成数据表结构共计 " & CStr(count) & " 表导入完毕!"
x1.Workbooks(1).close
x1.quit
else
msgbox "没有选择文件!"
end ifsub a(x1, mdl, r_0,r_9)
dim rwIndex   
dim tableName
dim colname
dim table
dim coltab_name = ucase(x1.Workbooks(1).Worksheets("表结构").cells(r_0,1).value)    '指定表名,如果在Excel文档里有,也可以 .Cells(rwIndex, 3).Value 这样指定
tab_code = ucase(x1.Workbooks(1).Worksheets("表结构").cells(r_0,2).value)  '指定表名
tab_comment = ucase(x1.Workbooks(1).Worksheets("表结构").cells(r_0,3).value)on error Resume Next
set table = mdl.Tables.CreateNew '创建一个表实体
table.Name = tab_name
table.Code = tab_code
table.Comment = tab_commentFor rwIndex = r_0 + 2 To r_9   '指定要遍历的Excel行标  由于第1行是表头,从第2行开始With x1.Workbooks(1).Worksheets("表结构")If .Cells(rwIndex, 2).Value = "" ThenExit ForEnd Ifset col = table.Columns.CreateNew   '创建一列/字段'MsgBox .Cells(rwIndex, 1).Value, vbOK + vbInformation, "列"If .Cells(rwIndex, 1).Value = "" Thencol.Name = ucase(.Cells(rwIndex, 2).Value)   '指定列名Else col.Name = ucase(.Cells(rwIndex, 1).Value)End If'MsgBox col.Name, vbOK + vbInformation, "列"col.Code = ucase(.Cells(rwIndex, 2).Value)   '指定列名col.DataType = ucase(.Cells(rwIndex, 3).Value)   '指定列数据类型col.Comment = ucase(.Cells(rwIndex, 4).Value)  '指定列说明If ucase(.Cells(rwIndex, 5).Value) = "Y" Thencol.Primary = true    '指定主键col.defaultvalue = ucase(.Cells(rwIndex,7).value)End If If ucase(.Cells(rwIndex,6).value) = "Y" thencol.defaultvalue = ucase(.Cells(rwIndex,7).value)col.Mandatory = true                End IfEnd With
Next
End subFunction getRow(x1, s_r)
dim i, k
k = s_r
do while x1.Workbooks(1).Worksheets("表结构").cells(k,1).value <> ""
k = k + 1
if x1.Workbooks(1).Worksheets("表结构").cells(k,1).value = "" then
getRow = k - 1
exit function
end if
loop
End Function
Function SelectFile()Dim shell : Set shell = CreateObject("WScript.Shell")Dim fso : Set fso = CreateObject("Scripting.FileSystemObject")Dim tempFolder : Set tempFolder = fso.GetSpecialFolder(2)Dim tempName : tempName = fso.GetTempName()Dim tempFile : Set tempFile = tempFolder.CreateTextFile(tempName & ".hta")tempFile.Write _"<html>" & _"<head>" & _"<title>Browse</title>" & _"</head>" & _"<body>" & _"<input type='file' id='f' />" & _"<script type='text/javascript'>" & _"var f = document.getElementById('f');" & _"f.click();" & _"var shell = new ActiveXObject('WScript.Shell');" & _"shell.RegWrite('HKEY_CURRENT_USER\\Volatile Environment\\MsgResp', f.value);" & _"window.close();" & _"</script>" & _"</body>" & _"</html>"tempFile.Closeshell.Run tempFolder & "\" & tempName & ".hta", 0, TrueSelectFile = shell.RegRead("HKEY_CURRENT_USER\Volatile Environment\MsgResp")shell.RegDelete "HKEY_CURRENT_USER\Volatile Environment\MsgResp"
End Function

其它:

所有表同在一个Sheet

Option ExplicitDim rowsNumrowsNum = 0
'-----------------------------------------------------------------------------
' Main function
'-----------------------------------------------------------------------------
' Get the current active model
Dim Model
Set Model = ActiveModel
If (Model Is Nothing) Or (Not Model.IsKindOf(PdPDM.cls_Model)) ThenMsgBox "The current model is not an PDM model."
Else' Get the tables collection'创建EXCEL APPdim beginrowDIM EXCEL, SHEETset EXCEL = CREATEOBJECT("Excel.Application")EXCEL.workbooks.add(-4167)'添加工作表EXCEL.workbooks(1).sheets(1).name ="test"set sheet = EXCEL.workbooks(1).sheets("test")ShowProperties Model, SHEETEXCEL.visible = true'设置列宽和自动换行sheet.Columns(1).ColumnWidth = 20 sheet.Columns(2).ColumnWidth = 40 sheet.Columns(4).ColumnWidth = 20 sheet.Columns(5).ColumnWidth = 20 sheet.Columns(6).ColumnWidth = 15 sheet.Columns(1).WrapText =truesheet.Columns(2).WrapText =truesheet.Columns(4).WrapText =trueEnd If
'-----------------------------------------------------------------------------
' Show properties of tables
'-----------------------------------------------------------------------------
Sub ShowProperties(mdl, sheet)' Show tables of the current model/packagerowsNum=0beginrow = rowsNum+1' For each tableoutput "begin"Dim tabFor Each tab In mdl.tablesShowTable tab,sheetNextif mdl.tables.count > 0 thensheet.Range("A" & beginrow + 1 & ":A" & rowsNum).Rows.Groupend ifoutput "end"
End Sub
'-----------------------------------------------------------------------------
' Show table properties
'-----------------------------------------------------------------------------
Sub ShowTable(tab, sheet)If IsObject(tab) ThenDim rangFlagrowsNum = rowsNum + 1' Show propertiesOutput "================================"sheet.cells(rowsNum, 1) = "实体名"sheet.cells(rowsNum, 2) =tab.namesheet.cells(rowsNum, 3) = ""sheet.cells(rowsNum, 4) = "表名"sheet.cells(rowsNum, 5) = tab.codesheet.Range(sheet.cells(rowsNum, 5),sheet.cells(rowsNum, 6)).MergerowsNum = rowsNum + 1sheet.cells(rowsNum, 1) = "属性名"sheet.cells(rowsNum, 2) = "说明"sheet.cells(rowsNum, 3) = ""sheet.cells(rowsNum, 4) = "字段中文名"sheet.cells(rowsNum, 5) = "字段名"sheet.cells(rowsNum, 6) = "字段类型"'设置边框sheet.Range(sheet.cells(rowsNum-1, 1),sheet.cells(rowsNum, 2)).Borders.LineStyle = "1"sheet.Range(sheet.cells(rowsNum-1, 4),sheet.cells(rowsNum, 6)).Borders.LineStyle = "1"
Dim col ' running column
Dim colsNum
colsNum = 0for each col in tab.columnsrowsNum = rowsNum + 1colsNum = colsNum + 1sheet.cells(rowsNum, 1) = col.namesheet.cells(rowsNum, 2) = col.commentsheet.cells(rowsNum, 3) = ""sheet.cells(rowsNum, 4) = col.namesheet.cells(rowsNum, 5) = col.codesheet.cells(rowsNum, 6) = col.datatypenextsheet.Range(sheet.cells(rowsNum-colsNum+1,1),sheet.cells(rowsNum,2)).Borders.LineStyle = "2"       sheet.Range(sheet.cells(rowsNum-colsNum+1,4),sheet.cells(rowsNum,6)).Borders.LineStyle = "2"rowsNum = rowsNum + 1Output "FullDescription: "       + tab.NameEnd If
End Sub

每个表一个Sheet

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, BOOK, SHEET  Set EXCEL = CreateObject("Excel.Application")  EXCEL.Visible = True  Set BOOK = EXCEL.Workbooks.Add(-4167) '新建工作簿  BOOK.Sheets(1).Name = "数据库表结构"  Set SHEET = EXCEL.workbooks(1).sheets("数据库表结构")  ShowProperties Model, SHEET  EXCEL.visible = true   '设置列宽和自动换行   SHEET.Columns(1).ColumnWidth = 10     SHEET.Columns(2).ColumnWidth = 30     SHEET.Columns(3).ColumnWidth = 20     SHEET.Columns(1).WrapText =true   SHEET.Columns(2).WrapText =true   SHEET.Columns(3).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  '-----------------------------------------------------------------------------   
' 数据表查询   
'-----------------------------------------------------------------------------  
Sub ShowTable(tab, sheet)     If IsObject(tab) Then   Dim rangFlag  sheet.cells(1, 1) = "序号"   sheet.cells(1, 2) = "表名"  sheet.cells(1, 3) = "实体名"  '设置边框   sheet.Range(sheet.cells(1, 1),sheet.cells(1, 3)).Borders.LineStyle = "1"  '设置背景颜色  sheet.Range(sheet.cells(1, 1),sheet.cells(1, 3)).Interior.ColorIndex = "19"  rowsNum = rowsNum + 1  sheet.cells(rowsNum+1, 1) = rowsNum   sheet.cells(rowsNum+1, 2) = tab.code  sheet.cells(rowsNum+1, 3) = tab.name  '设置边框  sheet.Range(sheet.cells(rowsNum+1,1),sheet.cells(rowsNum+1,3)).Borders.LineStyle = "2"  '增加Sheet  BOOK.Sheets.Add , BOOK.Sheets(BOOK.Sheets.count)  BOOK.Sheets(rowsNum+1).Name = tab.code   Dim shtn  Set shtn = EXCEL.workbooks(1).sheets(tab.code)  '设置列宽和换行  shtn.Columns(1).ColumnWidth = 30     shtn.Columns(2).ColumnWidth = 20     shtn.Columns(3).ColumnWidth = 20  shtn.Columns(5).ColumnWidth = 30     shtn.Columns(6).ColumnWidth = 20     shtn.Columns(1).WrapText =true   shtn.Columns(2).WrapText =true   shtn.Columns(3).WrapText =true  shtn.Columns(5).WrapText =true   shtn.Columns(6).WrapText =true  '设置列标题  shtn.cells(1, 1) = "字段中文名"   shtn.cells(1, 2) = "字段名"  shtn.cells(1, 3) = "字段类型"  shtn.cells(1, 5) = tab.code  shtn.cells(1, 6) = tab.Name  '设置边框   shtn.Range(shtn.cells(1, 1),shtn.cells(1, 3)).Borders.LineStyle = "1"  shtn.Range(shtn.cells(1, 5),shtn.cells(1, 6)).Borders.LineStyle = "1"  '设置背景颜色  shtn.Range(shtn.cells(1, 1),shtn.cells(1, 3)).Interior.ColorIndex = "19"  shtn.Range(shtn.cells(1, 5),shtn.cells(1, 6)).Interior.ColorIndex = "19"  Dim col ' running column   Dim colsNum  Dim rNum   colsNum = 0  rNum = 0   for each col in tab.columns   rNum = rNum + 1   colsNum = colsNum + 1   shtn.cells(rNum+1, 1) = col.name   shtn.cells(rNum+1, 2) = col.code   shtn.cells(rNum+1, 3) = col.datatype   next   shtn.Range(shtn.cells(rNum-colsNum+2,1),shtn.cells(rNum+1,3)).Borders.LineStyle = "2"           rNum = rNum + 1   Output "FullDescription: "       + tab.Name  End If     
End Sub  

 

参考:

https://www.cnblogs.com/chenz/articles/3456340.html(以上内容转自此篇文章)

https://blog.csdn.net/Bin594505536/article/details/50517573(以上内容转自此篇文章)

==>如有问题,请联系我:easonjim#163.com,或者下方发表评论。<==

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/538546.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

判读一个对象不为空_ArrayList实现分析(一)——对象创建

ArrayList是java中最常用的集合类之一&#xff0c;它的内部实现是基于数组&#xff0c;因此ArryList可以根据索引实现随机访问。ArryList继承了AbstractList类&#xff0c;并且实现了List, RandomAccess, Cloneable接口。下面详细分析一下ArrayList的实现&#xff0c;下面的分析…

AngularJS与Angular的区别

指同一事物&#xff0c;版本的区别&#xff0c;叫法不同 Angular2.0之前的版本&#xff08;1.x&#xff09;叫做AngularJS 1.x的使用是引入AngularJS的js文件到网页。 2.0之后&#xff0c;就是完全不同了。 Angular2.x与Angular1.x 的区别类似 Java 和 JavaScript 或者说是…

网页控制台调用click()失败_C# 调用百度AI 人脸识别

一、设置登录百度云控制台&#xff0c;添加应用-添加人脸识别&#xff0c;查找&#xff0c;对比等。设置人脸识别应用记住API Key和Secret Key二、创建Demo程序1、使用Nuget安装 Baidu.AI 和 Newtonsoft.JsonNuget2、直接下载SDK https://ai.baidu.com/file/7D961BC013AB4AA790…

mysql查看服务器CPU和内存_怎么查看服务器的cpu和内存的硬件信息

可以按照如下方式进行操作&#xff1a;一、查看cpu总个数方法&#xff1a;1、首先执行top命令&#xff0c;如下图中内容所表示。2、在top命令的显示界面&#xff0c;按数字键1&#xff0c;即可查看到当前系统中的总cpu数&#xff0c;如下图中内容所表示。二、查看总内存的方法&…

内核模式下的文件操作

内核模式下的文件操作 转载于:https://www.cnblogs.com/endenvor/p/9119495.html

极光推送指定用户推送_干货|SpringBoot集成极光推送完整实现代码(建议收藏)...

工作中经常会遇到服务器向App推送消息的需求&#xff0c;一般企业中选择用极光推送的比较多&#xff0c;在集成极光时发现极光的文档并不完整&#xff0c;网上的文章也很多不能直接使用&#xff0c;这里列出我在工作中集成极光的全部代码&#xff0c;只需要按照如下代码保证一次…

什么是ES6?

什么是ES6&#xff1f; ECMAScript 6&#xff08;以下简称ES6&#xff09;是JavaScript语言的下一代标准&#xff0c;已经在2015年6月正式发布了。Mozilla公司将在这个标准的基础上&#xff0c;推出JavaScript 2.0。   ECMAScript和JavaScript到底是什么关系&#xff1f;很多…

Babylon-AST初探-代码更新删除(Update Remove)

通过前两篇文章的介绍&#xff0c;大家已经了解了Create和Retrieve&#xff0c;我们接着介绍Update和 Remove操作。Update操作通常配合Create来完成。我们这篇文章主要介绍几个常用的NodePathAPI&#xff1a;replace、insert、remove。具体也可以看babel-handbook中的Manipulat…

python中时间间隔默认单位是什么_Python时间增量(以年为单位)

你需要不止一个timedelta来说明多少年过去了&#xff1b;你还需要知道开始(或结束)日期。(这是闰年的事。)最好的方法是使用dateutil.relativedeltaobject&#xff0c;但这是第三方模块。如果您想知道从某个日期起的datetime年(默认为现在)&#xff0c;可以执行以下操作&#x…

编解码异常分析

前言 最近在做的项目&#xff0c;有H264解码的需求。部分H264文件解码播放后&#xff0c;显示为绿屏或者花屏。 分析 如何确认是否是高通硬解码的问题 adb 指令 adb root adb remount adb shell setenforce 0 adb shell setprop vendor.gralloc.disable_ubwc 1 adb shell c…

python读取数据库导出文件_python如何导出excel表格数据库数据

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":4,"count":4}]},"card":[{"des":"阿里云数据库专家保驾护航&#xff0c;为用户…

mysql堆溢出_为什么这个MySQL触发器会导致堆栈溢出?

我今天遇到了同样的问题,每次触发都会导致堆栈溢出.原来我的Zend社区服务器安装附带了一个默认的my.cnf文件,其中thread_stack大小设置为128K,这导致每个线程中可用于堆栈的131072字节&#xff1a;mysql> show variables where Variable_name thread_stack;---------------…

MySQL定义数据库对象之指定definer

mysql创建view、trigger、function、procedure、event时都会定义一个Definer: SQL SECURITY 有两个选项&#xff0c;一个为DEFINER&#xff0c;一个为INVOKER&#xff1b;SQL SECURITY { DEFINER | INVOKER } &#xff1a;指明谁有权限来执行。DEFINER 表示按定义者拥有的权限来…

js根据name获取value_js 函数的重载

js 函数的重载我们知道&#xff0c;很多编程语言都有函数的重载。所谓的重载&#xff0c;看定义&#xff1a;重载&#xff0c;简单说&#xff0c;就是函数或者方法有相同的名称&#xff0c;但是参数列表不相同的情形&#xff0c;这样的同名不同参数的函数或者方法之间&#xff…

python调用菜单响应事件_[Python] wxpython 编程触发菜单或按钮事件

最近逐步熟悉wxpython&#xff0c;编写了几个小小功能的GUI程序&#xff0c;GUI中免不了会有在代码中触发控件事件的业务需求。在其他Gui界面的语言中有postevent、triggerevent 调用事件名称的函数&#xff0c;非常方便。在wxpython里如何解决呢&#xff0c;上一段简单的代码。…

Angular CLI 使用教程指南参考

原文链接&#xff1a;http://www.cnblogs.com/bh4lm/p/6638057.html 点击阅读原文 ----------------------------------------------- Angular CLI 使用教程指南参考 Angular CLI 现在虽然可以正常使用但仍然处于测试阶段. Angular CLI 依赖 Node 4 和 NPM 3 或更高版本. 安装…

存储过程循环遍历一个月的每一天的函数_JavaScript 循环:如何处理 async/await

同步循环很久以前我写的循环是这样的&#xff1a;后来 JavaScript 提供了很多新的特性&#xff0c;现在我们会更倾向于用下面这种写法&#xff1a;在开发过程可能会有这么一种需求&#xff0c;我们需要在循环中异步处理 item&#xff0c;那么可以怎么做呢&#xff1f;异步循环如…

Angular程序架构

component&#xff0c;组件是Angular应用的基本构建块&#xff0c;你可以把一个组件理解为一段带有业务逻辑和数据的html。组件下面可以有子组件&#xff0c;子组件下有孙子组件&#xff0c;像树一样。指令&#xff1a;允许你向html元素添加自定义行为。模块Ngmodule&#xff1…

sqllite能连接mysql_SQLLite 可以通过SQL语言来访问的文件型SQL数据库

Web Storage分为两类&#xff1a;- sessionStorage&#xff1a;数据保存在session 对象中(临时)- localStorage&#xff1a;数据保存在本地硬件设备中(永久)sessionStorage:保存数据的两种方法&#xff1a;sessionStorage.setItem(key,val);sessionStorage.key val;读取数据的…

迭代器模式(Iterator)

迭代器模式 一. 迭代器模式 1.1 定义 提供一种方法顺序访问一个集合对象中的各种元素&#xff0c;而又不暴露该对象的内部表示.1.2 角色 抽象迭代器接口&#xff08;Iterator&#xff09;.具体迭代器&#xff08;ConcreteIterator&#xff09;.抽象聚合接口&#xff08;Aggrega…