用ado连接过VFP数据库的进来看一下
我用下面这样的语句连接VFP数据库,本来没什么问题。但是我在数据库中加入了一条Integer(Autolnc)类型的字段后,就出错了.
提示"ODBC 驱动程序不支持所需的属性"
[bo]请问有没有没人知道哟!先谢过了![/bo]
<%
dim conndbf
dim connstrdbf
connstrdbf = "Driver={Microsoft Visual FoxPro Driver};SourceType=DBF;"&"SourceDB=" & Server.MapPath("spms\data") &";Exclusive=No;"
set conndbf=server.createobject("ADODB.CONNECTION")
conndbf.open connstrdbf
%>