Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Expecting a 0 or 1

Status
Not open for further replies.

bwillyerd

Programmer
Dec 9, 2005
1
0
0
US
When we execute a stored proc through the Interactive SQL window we get the 0/1 returned. When calling the same stored proc via an ASP page we get 'ADODB.Recordset error '800a0e78' Operation is not allowed when the object is closed.'
The Stored Proc is executed and the data is stored....
Create and set the rs object 'Server.Create' open the conn 'Conn.Open' using a DSN. Create our string 'Execute stored_proc @char_var_1 = '"&var1&"', @int_var_2 = "&var2&", @result = -1'
SET rs = conn.Execute(string)
If Not rs.EOF Then
Else
End If
The error is pointed at the 'If Not' line. Any Ideas?
Thank you,
Bill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top