2006年7月26日
摘要: 循环执行利用Trmer控件Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->private System.Timers.Timer IntoTime = new System.Timers.Timer(); private void Sho... 阅读全文
posted @ 2006-07-26 20:22 Gary.han 阅读(596) 评论(1) 推荐(0) 编辑
  2006年7月18日
摘要: 删除数据库的所有存储过程、主键、外键、索引等Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--删除存储过程DECLARE @STRING VARCHAR(8000)WHILE EXISTS(SELECT NAME FROM SYSOBJECTS WH... 阅读全文
posted @ 2006-07-18 18:19 Gary.han 阅读(718) 评论(1) 推荐(0) 编辑
  2006年6月30日
摘要: 阅读全文
posted @ 2006-06-30 18:00 Gary.han 阅读(405) 评论(2) 推荐(0) 编辑
摘要: //流读取写入文件 读取文件Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> //读文件操作 string strFileContent = ""; ... 阅读全文
posted @ 2006-06-30 17:57 Gary.han 阅读(803) 评论(0) 推荐(0) 编辑
  2006年6月29日
摘要: 新建登录用户,进行系统授权Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->Use DataBaseDemoGO--添加登录帐户'hanguoji',密码为'000000',默认数据库为'DataBaseDemo'EXEC sp_addlogin 'ha... 阅读全文
posted @ 2006-06-29 15:21 Gary.han 阅读(1096) 评论(2) 推荐(0) 编辑
  2006年6月28日
摘要: 把文件内容以批语据形式导入数据表Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->BULK INSERT以用户指定的格式复制一个数据文件至数据库表或视图中。语法BULK INSERT [ [ 'database_name'.][ 'owner' ].]{... 阅读全文
posted @ 2006-06-28 15:39 Gary.han 阅读(840) 评论(0) 推荐(0) 编辑
  2006年6月26日
摘要: 正则表达式操作HTML标记Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> //取出指定HTML标记中的匹配项的值RegexOptions.IgnoreCase忽略大小写,RegexOptions.Multiline忽略多行显示... 阅读全文
posted @ 2006-06-26 13:57 Gary.han 阅读(467) 评论(0) 推荐(0) 编辑
  2006年6月15日
摘要: 以下是读取用户上传的文件,转换成二进制写入数据库: 读取文件转化为二进制写入数据库Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->byte[] fileContent = new byte[0]; Stream f... 阅读全文
posted @ 2006-06-15 13:03 Gary.han 阅读(1152) 评论(0) 推荐(0) 编辑
  2006年6月14日
摘要: 调用web服务,可以在服务中验证用户是否有权限调用: 调用WEB服务返回参数Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->//使用Web服务 IRMWebConfig.IRMEachServerTools IRM... 阅读全文
posted @ 2006-06-14 16:48 Gary.han 阅读(274) 评论(0) 推荐(0) 编辑
  2006年5月31日
摘要: --删除约束ALTER TABLE CustomData DROP CONSTRAINT FK_CustomData_CustomFormatInfoGO--关闭递增插入属性SET IDENTITY_INSERT OFF--打开递增插入属性SET IDENTITY_INSERT ON--修改增加约束ALTER TABLE [CustomFormatInfo] WITH NOCHECK AD... 阅读全文
posted @ 2006-05-31 14:41 Gary.han 阅读(2640) 评论(1) 推荐(0) 编辑