这篇文章主要为大家详细介绍了PHP 创建、调用MySQL存储过程的示例,具有一定的参考价值,可以用来参考一下。
实例一:无参的存储过程
$conn = MySQL_connect('localhost','root','root') or die ("数据连接错误!!!");
MySQL_select_db('test',$conn);
$sql = "
create procedure myproce()
begin
INSERT INTO user (id, username, sex) VALUES (NULL, 's', '0');
end;
";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
创建一个myproce的存储过程
$sql = "call test.myproce();";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
调用myproce的存储过程,则数据库中将增加一条新记录。
$sql = "
create procedure myproce2(in score int)
begin
if score >= 60 then
select 'pass';
else
select 'no';
end if;
end;
";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
创建一个myproce2的存储过程
$sql = "call test.myproce2(70);";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
调用myproce2的存储过程,看不到效果,可以在cmd下看到结果。
$sql = "
create procedure myproce3(out score int)
begin
set score=100;
end;
";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
创建一个myproce3的存储过程
$sql = "call test.myproce3(@score);";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
调用myproce3的存储过程
$result = MySQL_query('select @score;');
$array = MySQL_fetch_array($result);
echo '<pre>';print_r($array);
/*** 代码来自四海网(www.q1010.com) ***/
$sql = "
create procedure myproce4(inout sexflag int)
begin
SELECT * FROM user WHERE sex = sexflag;
end;
";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
创建一个myproce4的存储过程
$sql = "set @sexflag = 1";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
设置性别参数为1
$sql = "call test.myproce4(@sexflag);";
MySQL_query($sql);
/*** 代码来自四海网(www.q1010.com) ***/
调用myproce4的存储过程,在cmd下面看效果
本文来自:http://www.q1010.com/173/79-0.html
注:关于PHP 创建、调用MySQL存储过程的示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:MySQL,存储过程
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。