activerecord - CodeIgniter Update Batch with Multiple Index -


i'm having problem active record update batch on codeigniter.

on documentation,

$this->db->update_batch('mytable', $data, 'title'); 

where 'title' index update process. possible have 2 or more index active record? tried

$this->db->update_batch('mytable', $data, 'title, title_2'); $this->db->update_batch('mytable', $data, array('title', 'title_2'); 

and it's not working.


Comments

Popular posts from this blog

javascript - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -