Microsoft
Software
Hardware
Network
Question : Error 3709 in ASP application
I'm getting Error 3709: The connection cannot be used to perform this operation. It is either closed or invalid in this context. I cannot find where this is happening. I've included the code below. Any help is appreciated.
Dim socon as ADODB.Connection: Set socon = dbC
Dim sorec1 As ADODB.Recordset
Set sorec1 = New ADODB.Recordset
Dim cmd As ADODB.Command: Set cmd = New ADODB.Cmd
Dim socomm1 As ADODB..Connection
sorec1.Open socomm1, , , , adCmdText
l_EventID = CLng(g_eventid)
Return_Value = 0
g_CreatorID = CLng(Session("UserID"))
With cmd
Set .ActiveConnection = socon
.CommandText = SP_CREATEFORM
.CommandType = adCmdStoredProc
.Parameters.Append .CreateParameter("@Return_
Value", adInteger, adParamReturnValue, , Return_Value)
.Parameters.Append .CreateParameter("@EventID
", adInteger, adParamInput, , l_EventID)
.Parameters.Append .CreateParameter("@Creator
ID", adInteger, adParamInputOutPut, , g_CreatorID)
.Execute , , adExecuteNoRecords
End With
Set sorec1 = Nothing
DropCn socon, cmd
Answer : Error 3709 in ASP application
I think the error source is
"
sorec1.Open socomm1, , , , adCmdText
"
You just declare the connection "
socomm1
" before using it without opening.
Random Solutions
Anchor link not working in Firefox on asp page
wiping ultra320 scsi drives
asp.net Can I put more that one mssql table 'field' in one GridView Column?
Cant login to Citrix server remotely (PS 4.5)
PHP module for MySql will not load
How do I create a drop-down in MS Excel that allows a user to select a file path
Excel 2007 VBA Function returns as 'empty'
SBS 2008 Send eMail Settings ??
A comment triggers image display in IE6
Developing for W2K3 - Missing MSCVP100.DLL & MSVCR100.DLL