diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-05 11:44:36 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-05 11:44:36 +0200 |
commit | 97f3697b6c1c220a32d8e63c5da636e9d725dd8a (patch) | |
tree | 21f1e6229f5af4f906a114517344c30421786201 /system/database/drivers/pdo | |
parent | 13e749db5c3cbf2f951347829265c51f8f8ecc34 (diff) |
Added a default _insert_batch() method instead of requiring each driver to define it and fixed 2 issues related to it
Diffstat (limited to 'system/database/drivers/pdo')
-rw-r--r-- | system/database/drivers/pdo/pdo_driver.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php index a9bed367e..6ba69b7a5 100644 --- a/system/database/drivers/pdo/pdo_driver.php +++ b/system/database/drivers/pdo/pdo_driver.php @@ -685,23 +685,6 @@ class CI_DB_pdo_driver extends CI_DB { // -------------------------------------------------------------------- /** - * Insert_batch statement - * - * Generates a platform-specific insert string from the supplied data - * - * @param string the table name - * @param array the insert keys - * @param array the insert values - * @return string - */ - protected function _insert_batch($table, $keys, $values) - { - return 'INSERT INTO '.$this->_from_tables($table).' ('.implode(', ', $keys).') VALUES '.implode(', ', $values); - } - - // -------------------------------------------------------------------- - - /** * Update statement * * Generates a platform-specific update string from the supplied data |