唐朝程序员

我来自唐朝

2007年1月4日

创建SQL Server全文索引的步骤

摘要: --使用指定的数据库use Fredoc--enable 数据库的全文检索sp_fulltext_database 'enable'--建立全文目录 FT_Fredocsp_fulltext_catalog 'FT_Fredoc','create'--在全文目录中注册需要全文索引的表sp_fulltext_table 'TArchive','create','FT_Fredoc','PK_TD... 阅读全文

posted @ 2007-01-04 13:16 唐朝程序员 阅读(366) 评论(0) 推荐(0) 编辑

转自Discuz!NT代震军的blog,修改名字为Regex的效率的奇怪的问题,哈哈

摘要: 在.net1.4322 和.net2.0下,如下代码运行速度差近50倍,至今还未找到原因,目前的解决方法是在静态构造函数中直接进行声明,以提升速度,如果大家有兴趣可以看一下RegexOptions.Compiled 这个正则项,我猜在vs2005下的框架有一些变化。using System;using System.Data;using System.Configuration;using Sys... 阅读全文

posted @ 2007-01-04 01:12 唐朝程序员 阅读(505) 评论(1) 推荐(0) 编辑

delegate 代理的三种调用方法

摘要: delegate string delegatehello (string a1,string a2); delegatehello aysncallback; string result=null; public string hello(string a1,string a2) { return "hello "+a1+a2; } private void Page_Lo... 阅读全文

posted @ 2007-01-04 01:04 唐朝程序员 阅读(404) 评论(0) 推荐(0) 编辑

导航