摘要:
DBF / FoxPro ODBC standard: "Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;Dbq=c:\mydbpath;" OLE DB, OleDbConnection (.NET) standard: "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\folder;Ex...
阅读全文
posted @ 2009-08-01 00:13
LanceLang
阅读(817)
推荐(0)
摘要:
全文索引和全文检索是sql server 7.0的新增功能,它能够对数据中的字符类型列(如varchar、text等类型列)进行索 引,并通过索引实现全文搜索查询。sql server常规索引与全文检索相比,二者的区别如下: 常规索引 全文索引 使用create index或约束定义创建 使用全文索引存储过程...
阅读全文
posted @ 2008-04-12 12:51
LanceLang
阅读(673)
推荐(0)
摘要:
正则表达式就是由普通字符(例如字符 a 到 z)以及特殊字符(称为元字符)组成的文字模式。该模式描述在查找文字主体时待匹配的一个或多个字符串。正则表达式作为一个模板,将某个字符模式与所搜索的字符串进行匹配。 本文详细地列出了能在正则表达式中使用,以匹配文本的各种字符。当你需要解释一个现有的正则表达式时,可以作为一个快捷的参考。更多详细内容,请参考:Francois Liger,Craig McQu...
阅读全文
posted @ 2008-01-25 10:53
LanceLang
阅读(637)
推荐(0)
摘要:
document方法: getElementById(id) 返回指定结点的引用 getElementsByTagName(name) 返回文档中所有匹配的元素的集合 createElement(name) 创建指定类型的新结点 createTextNode(text) ...
阅读全文
posted @ 2007-11-09 15:29
LanceLang
阅读(2295)
推荐(0)
posted @ 2007-11-02 17:18
LanceLang
阅读(2711)
推荐(0)
摘要:
1. 'null'为空或不是对象: 里面加个defer=true属性试试看, 即: 2. document.getElementById为null 原因: var titab=document.getElementById("titletab");没有取到对象 解决办法: 1.在错误语句的下面加上alert(titab);调试语句,看看是否有消息框弹出 2.如果没有弹出,检查HTML代码...
阅读全文
posted @ 2007-11-02 11:01
LanceLang
阅读(10219)
推荐(1)
摘要:
测试的url地址是 http://data.medix.cn/medic/default.aspx 结果如下: Request.ApplicationPath 结果:/medic Request.CurrentExecutionFilePath: 结果:medic/default.aspx Request.FilePath: 结果:/medic/default.aspx Reque...
阅读全文
posted @ 2007-11-01 13:55
LanceLang
阅读(529)
推荐(0)
摘要:
使用Oracle特有的查询语法, 可以达到事半功倍的效果 1. 树查询 create table tree ( id number(10) not null primary key, name varchar2(100) not null, super number(10) not null // 0 is root ); -- 从子到...
阅读全文
posted @ 2007-10-30 13:56
LanceLang
阅读(409)
推荐(0)
摘要:
spl> select * from emp where dates between to_date('2007-06-12 10:00:00', 'yyyy-mm-dd hh24:mi:ss') and to_date('2007-06-12 10:00:00', 'yyyy-mm-dd hh24:mi:...
阅读全文
posted @ 2007-10-24 17:17
LanceLang
阅读(16010)
推荐(0)
posted @ 2007-08-20 14:37
LanceLang
阅读(1215)
推荐(0)