I am using latest codeigniter and trying to call stored procedure from my model. Also I am using mysqli as database driver. Now I am having an error when I call two stored procedures. Following is the error:

Error Number: 2014

Commands out of sync; you can't run this command now

call uspTest();

Filename: E:\wamp\www\reonomy-dev\system\database\DB_driver.php

Line Number: 330

Note that when I call a single stored procedure it works fine. Here is the code for model.

class Menus_model extends CI_Model{

function __construct(){
            parent::__construct();

        }
        public function getMenus(){
            $query=$this->db->query("call uspGetMenus()");
            return $query->result();
        }

                public function getSubMenus(){
                    $query=$this->db->query("call uspTest()");
                    return $query->result();

        }

    }

Here is the code from controller

    <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class MYHQ extends CI_Controller {

    public function __construct() {
            parent::__construct();
                        $this->load->model('menus_model');
        }
    public function index()
    {
            $menu=$this->menus_model->getMenus();
            $submenu = $this->menus_model->getSubMenus();
         }

Is there any solution without hacking the core of codeigniter??

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This seems to be a bug in CodeIgniter. How come it's still in there is beyond me. However, there's a couple of ways to overcome it.

Check here: http://codeigniter.com/forums/viewthread/73714/ Basically, you modify mysqli_result.php to include next_result() function and make sure to call it after every stored proc. call. Just note that it assumes you're using mysqli as your DB driver... but you can probably do something similar with any other. You can change your driver in /application/config/database.php It's the line that says

$db['default']['dbdriver'] = 'mysql';

by default. Change it to:

$db['default']['dbdriver'] = 'mysqli';

You could also just close/reopen a DB connection between the calls, but I would definitely advise against that approach.

link|improve this answer
Thanks Veggen, Now it seems that there is no way to use it without hacking the core of codeigniter? – Tausif Khan Oct 17 '11 at 9:40
Well, apart from closing and reopening a DB connection between the calls, no, there seems to be no way. But, if it's of any condolence, the needed change is very small. I'm using such a hack on my current project :( – veggen Oct 17 '11 at 11:52
O.K. Just wanted to confirm. Anyways, Thanks and Nice work ;) – Tausif Khan Oct 18 '11 at 7:05
Consider changing the accepted answer to jonas', as it seems to be the preferred way. – veggen Mar 30 at 11:16
feedback

Having the same problem I found another approach which doesn't change the core, but instead uses a small helper.

See CoreyLoose post.

http://codeigniter.com/forums/viewthread/71141/#663206

I had to make a small adjusment to his helper though. The line

if( get_class($result) == 'mysqli_stmt' )

could possibly produce a warning since the $result sometimes is passed as a boolean. I just put a check prior to this line and now it works perfectly, with no tinkering with the core!

link|improve this answer
This looks good. Have to try it. – veggen Mar 22 at 13:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.