Mysql
 sql >> база данни >  >> RDS >> Mysql

Извикване на съхранена процедура в codeigniter

Следя блога на г-н Тим Браунлоу:
http://ellislab. com/forums/viewthread/73714/#562711

Първо променете application/config/config.php, ред 55.

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

След това добавете следното в mysqli_result.php, на което липсва тази команда по някаква странна причина (под /system/database/drivers/mysqli/mysqli_result.php).

/**
  * Read the next result
  *
  * @return  null
  */   
 function next_result()
 {
     if (is_object($this->conn_id))
     {
         return mysqli_next_result($this->conn_id);
     }
 }

След това във вашия модел добавете $result->next_result() .

По-долу е моят пример.

function list_sample($str_where, $str_order, $str_limit)
{
   $qry_res    = $this->db->query("CALL rt_sample_list('{$str_where}', '{$str_order}', '{$str_limit}');");

   $res        = $qry_res->result();

   $qry_res->next_result(); // Dump the extra resultset.
   $qry_res->free_result(); // Does what it says.

   return $res;
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Как да направите вътрешно присъединяване в django?

  2. Каква е ползата от Zerofill в MySQL?

  3. Прости произволни извадки от Sql база данни

  4. Вложени връзки със Sequelize

  5. Как mysql дефинира DISTINCT() в справочната документация