Show Foxpro Database in ASP
Hi ,
I trying to show foxpro database on ASP but there shown the error :
Microsoft OLE DB Provider for Visual FoxPro (0x80004005)
Feature is not available.
/vknow/searchrecord.asp, line 23
Here is the source code using vbscript:
dim conMK
dim ConnStr, sSql
Set conMK = Server.CreateObject("ADODB.Connection") 'line19
ConnStr= "Provider=VFPOLEDB.1;UID=root;" +_ 'line20
"SourceType=DBF;SourceDB=" & Server.MapPath("loitemm.dbf")& ";Exclusive=No;" 'line21
conMK.Open ConnStr 'line22
'line23
dim bFound 'line24
dim rs, rs1 'line25
...
%>
The VFPOLEDB.dll is already install on C:\Program Files\Common Files\System\Ole DB folder
I have no idea which part is going wrong .Any help will be appreciate.
|