Jump to content

SQLSRV - Retrieving output parameters from SP


Recommended Posts

I'm having issues retrieving the output parameters from a stored procedure. My work around for now was to just end the stored procedure with a select like the following:

 

SELECT @out1 AS 'out1', @out2 as 'out2', @out3 as 'out3';

 

That works fine, but I don't understand why I wasn't able to get the output parameters. Take the procedure below for example (I simplified it for posting purposes).

CREATE PROCEDURE [dbo].[test_procedure]
@out1 int OUTPUT,
@out2 int OUTPUT,
@out3 int OUTPUT
AS
BEGIN
SET NOCOUNT ON;

...
business logic that sets those 3 variables
...

SET NOCOUNT OFF;
END

 

The official examples I find do not use references while others do. Not sure what is correct in this case and there is confusion (definitely on my part) on which is correct.

$sql = '{call dbo.test_procedure(?, ?, ?)}';
$out1 = 0;
$out2 = 0;
$out3 = 0;
$stmt = sqlsrv_query($this->db->conn_id,$sql,array(
array(&$out1, SQLSRV_PARAM_OUT),
array(&$out2, SQLSRV_PARAM_OUT),
array(&$out3, SQLSRV_PARAM_OUT),
));

 

Those three variables will remain 0. I've tried without reference, specified SQLSRV_PHPTYPE_INT and SQLSRV_SQLTYPE_INT, to no avail.

 

Any thoughts on what I am missing? I'm using the sqlsrv drivers version 3.0.1, SQL Server 2008 R2, and PHP 5.4.3.

Link to comment
Share on other sites

  • 1 month later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.