Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Memanggil prosedur tersimpan di codeigniter

Saya mengikuti blog Mr. Tim Brownlaw:
http://ellislab. com/forums/viewthread/73714/#562711

Pertama, ubah application/config/config.php, baris 55.

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

Kemudian, tambahkan perintah berikut ke mysqli_result.php yang tidak memiliki perintah ini karena alasan yang aneh (di bawah /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);
     }
 }

Kemudian, dalam model Anda, tambahkan $result->next_result() .

Di bawah ini adalah contoh saya.

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. MASUKKAN MASSAL di MYSQL

  2. MySQL:Apa perbedaan antara float dan double?

  3. Cara melihat kueri lengkap dari SHOW PROCESSLIST

  4. Tidak semua parameter digunakan dalam pernyataan SQL (Python, MySQL)

  5. Memformat hasil kueri MySQL seolah-olah dijalankan dari konsol