ASP连接11种数据库语法总结(2)_ASP教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
推荐:asp简介和五大内置对象目次 1.ASP基础 2.ASP的五大对象 3.Request对象 4.Response对象 5.Server对象 6.Application对象 7.Session对象 1.ASP基础 Microsoft Active Server Pages,即读者朋友们所称的
7.dBase 连接方法:
以下为引用的内容: set adocon=Server.Createobject("adodb.connection") adocon.open"Driver={microsoft dbase driver(*.dbf)};driverid=277;dbq=------------;" |
8.mySQL 连接方法:
以下为引用的内容: set adocon=Server.Createobject("adodb.connection") adocon.open"Driver={mysql};database=yourdatabase; uid=username;pwd=yourpassword;option=16 386;" |
9.Visual Foxpro 连接方法:
以下为引用的内容: set adocon=Server.Createobject("adodb.connection") adocon.open"Driver={microsoft Visual Foxpro driver};sourcetype=DBC;sourceDB=*.dbc;Exclusive=No;" |
10.MS text 连接方法:
以下为引用的内容: set adocon=Server.Createobject("adodb.connection") adocon.open"Driver={microsoft text driver(*.txt; *.csv)};dbq=-----;"&_ "extensions=asc,csv,tab,txt;Persist SecurityInfo=false;" |
11.MS text OLE DB 连接方法:
以下为引用的内容: set adocon=Server.Createobject("adodb.connection") adocon.open"Provider=microsof.jet.oledb.4.0;data source=your_path;"&_ "Extended Properties'text;FMT=Delimited'" |
分享:ASP常用代码剪辑计算字符的大小 len()是一个字算一个,一个字母也一个 lenb()是字母和字都是两个 以下为引用的内容: function getlen(str) n=0 for i=1 to
相关ASP教程:
- 相关链接:
- 教程说明:
ASP教程-ASP连接11种数据库语法总结(2)。