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/odbc | |
parent | 8f24b1c9ad93365d5e2d20de9f89468e26ebbe34 (diff) |
Move count_all() from the drivers to CI_DB_driver
Diffstat (limited to 'system/database/drivers/odbc')
-rw-r--r-- | system/database/drivers/odbc/odbc_driver.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php index e3172117a..98fd806a8 100644 --- a/system/database/drivers/odbc/odbc_driver.php +++ b/system/database/drivers/odbc/odbc_driver.php @@ -245,36 +245,6 @@ class CI_DB_odbc_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; - } - - $row = $query->row(); - $this->_reset_select(); - return (int) $row->numrows; - } - - // -------------------------------------------------------------------- - - /** * Show table query * * Generates a platform-specific query string so that the table names can be fetched |