資料|資料庫 4)由Foxpro產生的DBC資料庫與MDB資料庫相似,都是一個資料庫包含幾個資料表的形式,所以對DBC資料庫的存取方法與MDB資料庫相似。
Function CreateDbcRecordset( DBC資料庫檔案名, 資料表名或Select語句 )
Dim conn,Driver,SourceType,DBPath
’ 建立Connection 對象
Set conn = Server.CreateObject("ADODB.Connection")
Driver = "Driver={Microsoft Visual FoxPro Driver};"
SourceType = "SourceType=DBC;"
DBPath = "SourceDB=" & Server.MapPath( "DBC資料庫檔案名" )
’ 串連資料庫
conn.Open Driver & SourceType & DBPath
Set CreateDbcRecordset = Server.CreateObject("ADODB.Recordset")
’ 開啟資料表,參數二為Connection對象
CreateDbcRecordset.Open "資料表名或Select語句", conn, 2, 2
End Function
5)將Excel97或Excel2000產生的XLS檔案(book)看成一個資料庫,其中的每一個工作表(sheet)看成資料庫表。
Function CreateExcelRecordset( XLS檔案名稱,Sheet名 )
Dim conn.Driver,DBPath
’ 建立Connection對象
Set conn = Server.CreateObject("ADODB.Connection")
Driver = "Driver={Microsoft Excel Driver (*.xls)};"
DBPath = "DBQ=" & Server.MapPath( "XLS檔案名稱" )
’ 調用Open 方法開啟資料庫
conn.Open Driver & DBPath
Set CreateExcelRecordset = Server.CreateObject("ADODB.Recordset")
’ 開啟Sheet,參數二為Connection對象,因為Excel ODBC驅動程式無法直接用’sheet名來開啟sheet,所以請注意以下的select語句
CreateExcelRecordset.Open "Select * From ["&sheet&”$]”, conn, 2, 2
End Function