vote up 0 vote down star

This is ADO in classic ASP.

I have a stored procedure with a parameter @IsNew of type int.

I can call it via SQL:

EXEC    [dbo].[SearchVehicles]
	@WebsiteName = N'AMSVans',
	@SortOrder = N'Year DESC,Status ASC',
	@Statuses = N'Unsold',
	@IsNew = 1

And the return sets are exactly as expected.

However, when I attempt to use it in my web page:

cmd.CommandText = "AMSVans.dbo.SearchVehicles"
cmd.CommandType = adCmdStoredProc

cmd.Parameters.Append cmd.CreateParameter("@WebsiteName", adVarChar, , 75, "AMSVans")
cmd.Parameters.Append cmd.CreateParameter("@SortOrder", adVarChar, , 500, "Year DESC,Status ASC," + SortMethod)
cmd.Parameters.Append cmd.CreateParameter("@Statuses", adVarChar, , 500, Statuses)
cmd.Parameters.Append cmd.CreateParameter("@IsNew", adInteger, , 4,1)
cmd.Parameters.Append cmd.CreateParameter("@Categories", adVarChar, , 500, "AMS Vans")

Set r = cmd.Execute

I get back nothing. Nada. Zilch.

I'm not even sure where to begin debugging this one :-/

Update RE "Set nocount on":

Interestingly, if I turn it off (ie, comment out that line), I get this error:

ADODB.Recordset error '800a0e78' 
Operation is not allowed when the object is closed. 
/pages/inventory/main.asp, line 109

The line in question (r is the recordset):

if not (r.EOF and r.EOF) then invFound = true
flag

Hey, are you returning multiple result sets? – cmsjr Aug 7 at 14:08
Yes. (It now works after i filled in defaults for the parameters that were "missing") – Matt Aug 9 at 1:49

2 Answers

vote up 0 vote down check

If your stored procedure can produce multiple result sets (including intermediate results that aren't intended for return) try setting nocount on at the beginning of the proc. Multiple results can cause problems for ado recordsets.

e.g.

Set NoCount On

Also, if that doesn't work, and you have changed the proc recently try running it from your page with different parameters so that you aren't getting a cached result.

Edit

I notice you are specifying a length for the int parameter, that is only necessary for variable length types, and would normally default to 0, try omitting it.

link|flag
Its already there! – Matt Aug 7 at 0:26
Interestingly, if I turn it off (ie, comment out that line), I get this error: ADODB.Recordset error '800a0e78' Operation is not allowed when the object is closed. /pages/inventory/main.asp, line 109 The line in question (r is the recordset): if not (r.EOF and r.BOF) then invFound = true – Matt Aug 7 at 0:29
Worth noting that changing the parameters doesn't change a thing, and that commenting out the "@IsNew" parameter works fine. – Matt Aug 7 at 0:42
Omitting the length didn't change anything. (Thanks for you help so far btw) – Matt Aug 7 at 11:59
thanks for your help – Matt Aug 7 at 12:01
show 1 more comment
vote up 0 vote down

I realize now that this would have been obvious to everyone if I had thought it relevant to say that the procedure has about 20 parameters, and since @IsNew was the last one, and the others were first - well, lets just say that adding default valued parameters for the ones in between made all the difference.

link|flag
That's a characteristic of the provider, it interprets all the parameters positionally, regardless of the name. – cmsjr Aug 8 at 19:35
Wish I had known that earlier - oh well, SQL traces to the rescue. – Matt Aug 9 at 1:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.