本篇文章是对php调用MsSQL存储过程使用内置RETVAL获取过程中的return值的方法进行了详细的分析介绍,需要的朋友参考下
【PHP代码】
echo 'EFGH';
【存储过程】
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