解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值
程序员文章站
2023-11-01 19:32:16
【php代码】复制代码 代码如下: $stmt = mssql_init('p__global_test', $conn) or die("initialize...
【php代码】
$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 name="code"> echo 'efgh';</pre> }
【存储过程】
create procedure dbo.p__user_judgeresume(
)
set nocount on
set @message = ''
if not exists( select * from _test )
begin
return 0
end
else
begin
return 1
end
set nocount off
go
复制代码 代码如下:
$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 name="code"> echo 'efgh';</pre> }
【存储过程】
复制代码 代码如下:
create procedure dbo.p__user_judgeresume(
)
set nocount on
set @message = ''
if not exists( select * from _test )
begin
return 0
end
else
begin
return 1
end
set nocount off
go
推荐阅读
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值_PHP
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值_PHP教程
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值_php技巧
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值_php技巧
-
php调用MsSQL存储过程使用内置RETVAL获取过程中的return值_PHP教程