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 12:31:56
 
 
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00569635
Message ID:
00569709
Views:
15
Hi , something doesn't work..i got a error at the line cmd.execute
here is the code i'm using :

dim conn, cmd, returnvalue
Set cmd = Server.CreateObject("ADODB.Command")
Set conn = Server.CreateObject("ADODB.Connection")
conn.mode = 16
conn.Open "Provider=VFPOLEDB.1 ; Data Source=C:\vfp\test\Mydatabase.dbc"
set cmd.activeconnection = conn
cmd.commandtype = adCmdStoredProc
cmd.commandtext = "myproc"
cmd.parameters(1) = "param"
cmd.execute
returnvalue = cmd.parameters(1)
RESPONSE.WRITE(RETURNVALUE)

>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform