博客园站长
这是人类成长进步中记录的每一时刻
摘要: 多表情况 阅读全文
posted @ 2016-06-28 17:25 dm3344 阅读(621) 评论(0) 推荐(0)
摘要: begin begin savepoint p1; DELETE FROM sys_re_xxx; //红色部分替换为需要一起执行的SQL即可 DELETE FROM SYS_xxxx; ...... exception when others then begin rollback to savepoint p1; return; end; end; commit; end; ... 阅读全文
posted @ 2016-06-28 16:33 dm3344 阅读(155) 评论(0) 推荐(0)
摘要: var filePath="f:\xx.xlsx" string connStr = "Provider=Microsoft.Ace.OleDb.12.0;" + "data source=" + filePath + ";Extended Properties='Excel 12.0; HDR=Y 阅读全文
posted @ 2016-06-28 14:36 dm3344 阅读(1280) 评论(0) 推荐(0)
摘要: clob,nclob当值为“”空字符串时,就会出现这个错误 阅读全文
posted @ 2016-06-28 14:25 dm3344 阅读(381) 评论(0) 推荐(0)
摘要: Control.CheckForIllegalCrossThreadCalls = false; //加这句即可 Thread thread = new Thread(() => { ExecImport(); }); thread.Start();//启动线程 thread.IsBackgroun 阅读全文
posted @ 2016-06-28 09:34 dm3344 阅读(296) 评论(0) 推荐(0)