基于where条件在Codeigniter中转储数据库

时间:2017-11-30 12:16:59

标签: php mysql codeigniter

我需要备份数据库表,但在少数列上有where条件。我在codeigniter中查找了dbutil实用程序,但没有选择在表格中应用where条件。

$prefs = array(
    'tables'        => array('table1', 'table2'),   // Array of tables to backup.
    'ignore'        => array(),                     // List of tables to omit from the backup
    'format'        => 'txt',                       // gzip, zip, txt
    'filename'      => 'mybackup.sql',              // File name - NEEDED ONLY WITH ZIP FILES
    'add_drop'      => TRUE,                        // Whether to add DROP TABLE statements to backup file
    'add_insert'    => TRUE,                        // Whether to add INSERT data to backup file
    'newline'       => "\n"                         // Newline character used in backup file
);

根据codeigniter文档,没有提及表上的条件。

0 个答案:

没有答案