ID:               21328
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Feedback
 Bug Type:         MSSQL related
 Operating System: windows 2000/sp3
 PHP Version:      4.3.0
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php4-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-latest.zip


Previous Comments:
------------------------------------------------------------------------

[2003-01-02 00:23:20] [EMAIL PROTECTED]

Hello! 
Happy new year!

I have next MSSQL procedure:
create procedure test1
as begin

        return 12345
end

and have next test script:
<?
mssql_connect($server,$user,$password);
mssql_select_db($db);
$a=10;
$s=mssql_init("test1");
mssql_bind($s,'RETVAL',&$a,SQLINT4);
mssql_execute($s);
echo $a;
?>

in PHP-4.2.3 I got 12345 as output in $a
in PHP-4.3.0 I got 10 as output in $a

Congratulations, MSSSQL working with Stored procedures is fully broken.
or documentation missmath with 4.3.0?

Regards,
vladimir,
Novosibirsk,
Russia.


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=21328&edit=1

Reply via email to