帮忙看看下面的ASP语句
有membercallscompany和PatentCompany两个数据库,装在计算机名为steve(ip地址为192.168.0.3)的数据库服务器上,数据库为sql server2000.现在该服务器或另一台机器上,通过用下面的dbconnect.asp模块实现与两个库的连接,在数据库中已经设置好sa的密码为8898
<%
strconn = "Provider=SQLOLEDB.1;Persist Security Info=False;;Password=8898;User ID=sa;Initial Catalog=PatentCompany;Data Source=steve"
strconnmembercalls = "Provider=SQLOLEDB.1;Persist Security Info=False;;Password=8898;User ID=sa;Initial Catalog=membercallscompany;Data Source=steve"
strconndownload = "Provider=SQLOLEDB.1;Persist Security Info=False;;Password=8898;User ID=sa;Initial Catalog=membercallscompany;Data Source=steve"
strconncmd = "Provider=SQLOLEDB.1;Persist Security Info=False;;Password=8898;User ID=sa;Initial Catalog=PatentCompany;Data Source=steve"
%>
结果发现membercallscompany都可以连上,但是PatentCompany却都不行,怀疑这个asp语句有问题,请各位指点,谢谢!