[eluser]pengenbelajarCI[/eluser]
Hi, I'm using dbutil() to backup the database.
Code:
$this->load->dbutil();
$prefs = array(
'tables' => array('products','spesifications'),
'format' => 'zip'
);
$backup =& $this->dbutil->backup($prefs);
But even i declare that only 2 tables are backup, but it give all the table. And also, the file is on zip format, which make 'format' parameter on $prefs is work, but on on 'tables' parameter.
Anybody had an idea why this is happen?