试图“打电话”;使用 CodeIgniter 存储过程
我有 CI 的工作代码:
$this->db->query("call nameOfProcedure('param1', @param2)");
$query = $this->db->query('SELECT @param2 as results');
$row = $query->row();
它可以工作,但如果我尝试使用:
$this->db->call_function('nameOfProcedure', 'param1', '@param2');
我收到错误:
此功能不适用于您正在使用的数据库。
究竟出了什么问题?
谢谢
i've this working code with CI:
$this->db->query("call nameOfProcedure('param1', @param2)");
$query = $this->db->query('SELECT @param2 as results');
$row = $query->row();
it works, but if I try to use:
$this->db->call_function('nameOfProcedure', 'param1', '@param2');
i get the error:
This feature is not available for the database you are using.
What's wrong exactly?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以防万一它对任何人有帮助。我使用这个库来处理 CI 中的存储过程,它也支持多个结果集。
代码
这是我称之为
Mydb.php
的,从控制器中这样调用它
另外,请确保设置
mysqli
驱动程序在
application/config/database.php
Just in case it helps anyone. I use this library to work with stored procedures in CI, it supports multiple result sets too.
here is the code
I call it
Mydb.php
call it like this from controller
Also, make sure to set
mysqli
the driverin
application/config/database.php
查看有关
call_function
的文档。它用于调用非 CI 数据库驱动程序本身的函数,而不是用于调用您编写的过程。您可以检查 CI 2.1.0 上
/system/database/DB_driver.php
Ln 998 中的call_function
代码,清楚地看到它在做什么。Check out the docs on
call_function
. It's for calling functions that aren't native to CI's DB driver, not for calling procedures you've written.You can check the
call_function
code in/system/database/DB_driver.php
Ln 998 on CI 2.1.0 to see clearly what it's doing.