|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-01-02 00:32 UTC] derick@php.net
[2003-01-02 00:41 UTC] pvy at novosoft dot ru
[2003-01-02 00:46 UTC] pvy at novosoft dot ru
[2003-01-07 04:45 UTC] hwulampe at gmx dot de
[2003-01-09 12:10 UTC] fmk@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 19:00:02 2025 UTC |
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.