怎样使ASP和SQL相联?
我的网页不能和SQL相联。
而且我试了三种联接方式都不行,
一种是
<%
Function GetSQLServerConnection( Computer, UserID, Password, Db )
Dim Params, conn
Set GetSQLServerConnection = Nothing
Params = "Provider=SQLOLEDB.1"
Params = Params & ";Data Source=" & Computer
Params = Params & ";User ID=" & UserID
Params = Params & ";Password=" & Password
Params = Params & ";Initial Catalog=" & Db
Set conn = Server.CreateObject("ADODB.Connection")
conn.open Params
Set GetSQLServerConnection = conn
End Function
%>
它提示conn.open params一行错误
一种是ODBC
它提示也是conn.open错误
一种是driver联接,
错误也是一样
谢谢啊!!