diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-05-26 17:21:14 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-05-26 17:21:14 +0200 |
commit | 16bb9bd93698335fc1692adcfbd20d8e4fda6268 (patch) | |
tree | 659548f65e50033ab49bc5e4ee7720d04b9a5377 /system/database/drivers/interbase/interbase_driver.php | |
parent | 8f24b1c9ad93365d5e2d20de9f89468e26ebbe34 (diff) |
Move count_all() from the drivers to CI_DB_driver
Diffstat (limited to 'system/database/drivers/interbase/interbase_driver.php')
-rw-r--r-- | system/database/drivers/interbase/interbase_driver.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/system/database/drivers/interbase/interbase_driver.php b/system/database/drivers/interbase/interbase_driver.php index c457f6340..49d3cda87 100644 --- a/system/database/drivers/interbase/interbase_driver.php +++ b/system/database/drivers/interbase/interbase_driver.php @@ -244,35 +244,6 @@ class CI_DB_interbase_driver extends CI_DB { // -------------------------------------------------------------------- /** - * "Count All" query - * - * Generates a platform-specific query string that counts all records in - * the specified database - * - * @param string - * @return string - */ - public function count_all($table = '') - { - if ($table == '') - { - return 0; - } - - $query = $this->query($this->_count_string.$this->protect_identifiers('numrows').' FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE)); - if ($query->num_rows() == 0) - { - return 0; - } - - $query = $query->row(); - $this->_reset_select(); - return (int) $query->numrows; - } - - // -------------------------------------------------------------------- - - /** * List table query * * Generates a platform-specific query string so that the table names can be fetched |