随笔分类 -  .Net

呵呵,至少10年不淘汰的技术
摘要:当一个方法的执行时间未知时,我们要在此方法执行完成后回调另外一个处理函数时,这段代码就有用处了 1using System; 2using System.Drawing; 3using System.Collections; 4using System.ComponentModel; 5using System.Windows.Forms; 6using System.Data; ... 阅读全文

posted @ 2007-01-16 10:54 黑袍 阅读(523) 评论(1) 推荐(0)

摘要:一,设置列属性方式--区分大小写create table tbl(f1 varchar(10) collate chinese_prc_cs_as --区分大小写)--不区分大小写create table tbl(f1 varchar(10) collate chinese_prc_ci_as --不区分大小写)insert into tbl values('abc');insert into t... 阅读全文

posted @ 2007-01-16 10:25 黑袍 阅读(635) 评论(0) 推荐(0)