asp 连接sql server2008出错 450参数个数或无效的参数属性值
我在index.asp中调用top。asp的时候,top.asp中有<!--#include file="Connect.inc"-->的引用在Connect.inc文件中,代码这样的:
dim constr
connstr="PROVIDER=SQLOLEDB;DATA SOURCE=127.0.0.1;database=ABC;User Id=sa;PASSWORD=Ipc123;"
set adocon = server.CreateObject("adodb.connection")
adocon.open constr
现在问题是,一旦执行adocon.open constr 的时候,就出现“参数个数或无效的参数属性值”这样的450错误,
下面是我有实验的几个连接
"Provider=SQLOLEDB;Password=Ipc123;User ID=sa;Data Source=127.0.0.1;inital Catalog=ABC;"
"Data Source=127.0.0.1;Initial Catalog=ABC;User Id=sa;Password=Ipc123;"
"Provider=SQLNCLI10;Server=127.0.0.1;Database=ABC;Uid=sa; Pwd=Ipc123;"
"Driver={SQL Server Native Client 10.0};Server=127.0.0.1;Database=ABC;Uid=sa;Pwd=Ipc123;"
"Provider=SQLXMLOLEDB.4.0;Data Provider=SQLNCLI10;Data Source=127.0.0.1;Initial Catalog=ABC;User Id=sa;Password=Ipc123;"
都是同样的问题,又谁遇到过这样的错误吗?我第一次做asp项目,其他的都调试过了,就是数据库连接这个地方,困惑了好几天了,
又谁能帮助我吗,谢谢?