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)。