日期:2012-07-20 07:47:00 来源:本站整理
<b>详解MySQL存储历程参数有三种范例(in、out、inout)</b>[MySQL防范]
本文“<b>详解MySQL存储历程参数有三种范例(in、out、inout)</b>[MySQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
1、MySQL 存储历程参数(in)
MySQL 存储历程 "in" 参数:跟 C 语言的函数参数的值传送近似, MySQL 存储历程内部大概会改正此参数,但对 in 范例参数的改正,对调用者(caller)来说是不可见的(not visible).
复制代码 代码以下:
drop procedure if exists pr_param_in;
create procedure pr_param_in
(
in id int -- in 范例的 MySQL 存储历程参数
)
begin
if (id is not null) then
set id = id + 1;
end if;
select id as id_inner;
end;
set @id = 10;
call pr_param_in(@id);
select @id as id_out;
mysql> call pr_param_in(@id);
+----------+
| id_inner |
+----------+
| 11 |
+----------+
mysql> select @id as id_out;
+--------+
| id_out |
+--------+
| 10 |
+--------+
可以看到:用户变量 @id 传入值为 10,履行存储历程后,在历程内部值为:11(id_inner),但外部变量值仍旧为:10(id_out).
2、MySQL 存储历程参数(out)
MySQL 存储历程 "out" 参数:从存储历程内部传值给调用者.在存储历程内部,该参数初始值为 null,无论调用者能否给存储历程参数设置值.
复制代码 代码以下:
drop procedure if exists pr_param_out;
create procedure pr_param_out
(
out id int
)
begin
select id as id_inner_1; -- id 初始值为 null
if (id is not null) then
set id = id + 1;
select id as id_inner_2;
else
select 1 into id;
end if;
select id as id_inner_3;
end;
set @id = 10;
call pr_param_out(@id);
select @id as id_out;
mysql> set @id = 10;
mysql>
mysql> call pr_param_out(@id);
+------------+
| id_inner_1 |
+------------+
| NULL |
+------------+
+------------+
| id_inner_3 |
+------------+
| 1 |
+------------+
mysql> select @id as id_out;
+--------+
| id_out |
+--------+
| 1 |
+--------+
可以看出,固然我们设置了用户定义变量 @id 为 10,传送 @id 给存储历程后,在存储历程内部,id 的初始值老是 null(id_inner_1).最后 id 值(id_out = 1)传回给调用者.
3、MySQL 存储历程参数(inout)
MySQL 存储历程 inout 参数跟 out 近似,都可以从存储历程内部传值给调用者.差别的是:调用者还可以通过 inout 参数传送值给存储历程.
复制代码 代码以下:
drop procedure if exists pr_param_inout;
create procedure pr_param_inout
(
inout id int
)
begin
select id as id_inner_1; -- id 值为调用者传进来的值
if (id is not null) then
set id = id + 1;
select id as id_inner_2;
else
select 1 into id;
end if;
select id as id_inner_3;
end;
set @id = 10;
call pr_param_inout(@id);
select @id as id_out;
mysql> set @id = 10;
mysql>
mysql> call pr_param_inout(@id);
+------------+
| id_inner_1 |
+------------+
| 10 |
+------------+
+------------+
| id_inner_2 |
+------------+
| 11 |
+------------+
+------------+
| id_inner_3 |
+------------+
| 11 |
+------------+
mysql>
mysql> select @id as id_out;
+--------+
| id_out |
+--------+
| 11 |
+--------+
从后果可以看出:我们把 @id(10),传给存储历程后,存储历程最后又把计算后果值 11(id_inner_3)传回给调用者. MySQL 存储历程 inout 参数的行为跟 C 语言函数中的引用传值近似.
通 过以上例子:假如仅仅想把数据传给 MySQL 存储历程,那就利用"in" 范例参数;假如仅仅从 MySQL 存储历程返回值,那就利用"out" 范例参数;假如需求把数据传给 MySQL 存储历程,还要经过一些计算后再传回给我们,此时,要利用"inout" 范例参数.
以上是“<b>详解MySQL存储历程参数有三种范例(in、out、inout)</b>[MySQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论