调用word的com组件将400条数据导入word表格中耗时10分钟简直不能忍受,使用NPOI组件耗时4秒钟.但是NPOI中替换书签内容的功能不知道是不支持还是没找到. 辅助类 Excel表格数据与DataTable互转: using System; using System.Collections.Generic; using System.Linq; using System.Text; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel;…
1.首先我们看一下这个图: 1.NULL| not NULL是否为空 规定一个字段的值是否为NULL 2.Default value 字段默认值属性 常见的是一个字段不能为空,而且存在默认值 create table php2(a int not null default 10,b int not null default 21); insert into php2(a) values(a); //a 默认是10insert into php2(b) values(b);//b默认是2…
<% Function Test(str) dim intLen,i,strTemp,aryTest intLen = Len(str) strTemp = "" aryTest = Split(str,",") For i = LBound(aryTest) to UBound(aryTest) If Instr(1,strTemp,aryTest(i)) = 0 Then strTemp = Trim(strTemp) & aryTest(i) &…
前言:我们知道SQLSERVER清空数据表有两种方式Delete和Truncate,当然两者的不同大家也都知道(不清楚的可以MSDN).不过这个错误“Cannot truncate table because it is being referenced by a FOREIGN KEY” 相信大家也都遇到过,解决的已解决,未解决的且看下文. 如何解决 开始我以为只要将外键Disable掉就可以了,事实证明是没用的.其实MSDN已经明确告诉了我们: 不能对以下表使用 TRUNCATE TABL…
数据表的修改包括列的增加.列的删除.约束的添加.约束的删除等. 添加单列 ALTER TABLE tbl_name ADD [COLUMN] col_name column_definition [FIRST | AFTER col_name] FIRST:位于所有列之前 AFTER col_name:位于指定咧之后 删除列 ALTER TABLE tbl_name DROP [COLUMN] col_name 对数据表进行重复操作 ALTER TABLE tbl_name [ADD | DRO…
数据约束的分类: ———————————————————————————————————————————————————— 外键约束的要求解析: //在my文件中的这句话代表着搜索引擎,如果不是的就需要技能型更改.然后重启.my文件存在于我的电脑中的mysql文件夹里. # The default storage engine that will be used when create new tables when default-storage-engine=INNODB root t2>C…