diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-27 08:45:38 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-27 08:45:38 +0200 |
commit | 60ef4ea72e169e174ff8dbb421609a178a3c0c48 (patch) | |
tree | c671c840b20193e06044a348783e78be2570932a /system/database/drivers/postgre | |
parent | 1d3021a26e3d542137ceddc6c0f4a08a4f80a096 (diff) |
Added insert_batch() function to the PostgreSQL database driver. Thanks to epallerols for the patch.
Diffstat (limited to 'system/database/drivers/postgre')
-rw-r--r-- | system/database/drivers/postgre/postgre_driver.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php index 47ff36246..140396885 100644 --- a/system/database/drivers/postgre/postgre_driver.php +++ b/system/database/drivers/postgre/postgre_driver.php @@ -554,6 +554,24 @@ class CI_DB_postgre_driver extends CI_DB { // -------------------------------------------------------------------- /** + * Insert_batch statement + * + * Generates a platform-specific insert string from the supplied data + * + * @access public + * @param string the table name + * @param array the insert keys + * @param array the insert values + * @return string + */ + function _insert_batch($table, $keys, $values) + { + return "INSERT INTO ".$table." (".implode(', ', $keys).") VALUES ".implode(', ', $values); + } + + // -------------------------------------------------------------------- + + /** * Update statement * * Generates a platform-specific update string from the supplied data |