⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

batch insert similar to codeigniter



casachit
  • profile picture
  • Member

Posted 29 May 2012 - 05:51 AM

is there any way or option or function for batch insert in grocery crud similar to codeigniter batch insert

$data = array(
array(
'title' => 'My title' ,
'name' => 'My Name' ,
'date' => 'My date'
),
array(
'title' => 'Another title' ,
'name' => 'Another Name' ,
'date' => 'Another date'
)
);
$this->db->insert_batch('mytable', $data);

casachit
  • profile picture
  • Member

Posted 30 May 2012 - 02:31 AM

can anyone help me or show me how to batch insert in grocery crud???