解析:php调用MsSQL存储过程使用内置RETVAL获取过程


 $stmt = mssql_init('P__Global_Test', $conn) or die("initialize stored procedure failure");
 mssql_bind($stmt, "RETVAL", $returnValue, SQLINT4, true);
 mssql_execute($stmt, false);
        if( $returnValue == 0 ){
           echo 'ABCD';
        }
        else{ <PRE class=php>           echo 'EFGH';</PRE> }&nbsp;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/3fe1a7c1d452a178e86e79be2c0d1d4e.html