我正在尝试从 MySQL 存储过程中获取输出参数,让我们看一个下面的示例:
1 在 mysql 中,我创建了这个程序并且它可以工作。
CREATE PROCEDURE sp_name (out id int)
Begin
select id into @id from table order by id desc limit 1;
End
mysql> call sp_deduct_credit_and_money(@id);
Query OK, 0 rows affected (0.01 sec)
mysql> select @id;
+--------------+
| @id |
+--------------+
| 24 |
+--------------+
1 row in set (0.00 sec)
2 因此,它也适用于 Rails,但它不会为我返回任何值:
ActiveRecord::Base.connection.execute("call sp_name(@id)")
ActiveRecord::Base.connection.execute("select @id")
这是Rails的日志
(2.0ms) call sp_name(@id)
(0.1ms) select @id
我的问题是如何获得输出参数的返回值@id
?