Return value from Stored Procedure
- From: Light <a@xxxxx>
- Date: Sun, 01 Apr 2007 10:35:21 -0400
Hi All,
I've posted this question on the aspnet NG where I got some useful responses but they've yet solved my problem, then I find this classic asp NG, and hopefully, someone can spot the error right away.
I inherited some legacy ASP codes in my office (I am a total newbie in ASP and SQL). The original code's back-end is using the SQL Server 2000 and I am testing to use it on the Express edition. In brief, the code works with the SQL Sever 2000 but not in the Express Edition. The table I want to create is created correctly in the Express sever also.
The problem is describes as follows.
One of the pages is using a stored procedure to create a new table and
return the value of the new table ID.
The codes on the .asp file are written in VBScript, briefly, it is as follows:
set cmd = Server.CreateObject("ADODB.Command")
cmd.ActiveConnection= dbConnection
cmd.CommandText = "NewCompany"
cmd.CommandType = adCmdStoredProc
cmd.Parameters("@varCompanyName") = Request.Form("COMPANYNAME")
:
:
cmd.Parameters("@RETURNVALUE") = 0 'initialized to 0
Set rsID = cmdCom.Execute
Set rsID = rsID.NextRecordset
ID = cmdCom.Parameters("@RETURNVALUE")
On the SQL Server 2000, the ID is returned correctly, but the Express
doesn't. In fact, it didn't fill in the vat all. For example, If I set the RETURNVALUE to -5 before the execute, the new value remains -5. And I could see the table is created correctly with the proper id. It is just the return value received at the client web
browser is never set.
Here is the shorten version of the stored procedure code:
CREATE Procedure NewCompany
(
@varCompanyName varchar (50) = null,
:
:
@RETURN_VALUE int OUTPUT
)
As
INSERT INTO tblCompany(varCompanyName)
values
(@varCompanyName )
SELECT @RETURN_VALUE = @@identity /* Scope_identity() was also tried, same problem */
return @RETURN_VALUE
So my question is, is there any change I need to make for the Express's
stored procedure?
Any suggestion is highly appreciated. This problem is kind of important as a lot of our customers are migrating their SQL servers from 2000 to the 2005. I've Googled far and wide for a solution and nothing came out of it.
TIA
.
- Follow-Ups:
- Re: Return value from Stored Procedure
- From: Bob Barrows [MVP]
- Re: Return value from Stored Procedure
- Prev by Date: for annecorinne: highly aesthetic newsgroup access - wug - (1/1)
- Next by Date: Re: Return value from Stored Procedure
- Previous by thread: for annecorinne: highly aesthetic newsgroup access - wug - (1/1)
- Next by thread: Re: Return value from Stored Procedure
- Index(es):
Relevant Pages
|
|