Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to get a value from a stored prcedure via ASP
Message
From
17/10/2001 11:46:22
 
 
To
17/10/2001 11:24:36
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00569635
Message ID:
00569652
Views:
22
Hi!

In ASP you probably use ADO, so I will write this for ADO (also assuming you use VB script, not a JavaScript):

Set cmdComm = New ADODB.Command
Set cmdComm.ActiveConnection = objConn
cmdComm.CommandType = adCmdStoredProc
cmdComm.CommandText = "MySPName"

' at this moment most likely (for SQL Server OLEDB provider) Command object already will know all
'arameters and parameters collection will contain "RETURN_VALUE" parameter
' maybe add some parameters for SP here to the command obect parameters collection
'...

cmdComm.Execute
If cmdComm.Parameters("RETURN_VALUE").Value <> 0 Then
....

HTH.

>How can i get the value turned back by a stored procedure using ASP ?
>I can invoke it but I don't know how to get the result
>
>Thank u
Vlad Grynchyshyn, Project Manager, MCP
vgryn@yahoo.com
ICQ #10709245
The professional level of programmer could be determined by level of stupidity of his/her bugs

It is not appropriate to say that question is "foolish". There could be only foolish answers. Everybody passed period of time when knows nothing about something.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform