Forum Moderators: open
Unspecified error
/test/test/connect2.asp, line 24 "
Line 24 is the line reading: objConn.Open "DSN=Test"
I'm not sure what is going on here ...
<%
Dim objConn, objRS
Dim adOpenForwardOnly, adLockReadOnly, adCmdTable
adOpenForwardOnly = 0
adLockReadOnly = 1
adCmdTable = 2
Set objConn = Server.CreateObject("ADODB.Connection")
Set objRS = Server.CreateObject("ADODB.Recordset")
objConn.Open "DSN=Test"
objRS.Open "Names" , objConn, adOpenForwardOnly, adLockReadOnly, adCmdTable
While Not objRS.EOF
Response.Write objRS("QuoteID") & "<BR>"
objRS.MoveNext
Wend
objRS.Close
ObjConn.Close
Set objRS = Nothing
Set objConn = Nothing
%>