From 1716cb80344dcb09dd263293b7901cd5b669e302 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 25 Oct 2006 05:12:34 +0000 Subject: --- system/database/drivers/mssql/mssql_result.php | 2 +- system/database/drivers/mssql/mssql_utility.php | 2 +- system/database/drivers/mysql/mysql_result.php | 2 +- system/database/drivers/mysql/mysql_utility.php | 2 +- system/database/drivers/mysqli/mysqli_result.php | 2 +- system/database/drivers/mysqli/mysqli_utility.php | 2 +- system/database/drivers/postgre/postgre_result.php | 2 +- system/database/drivers/postgre/postgre_utility.php | 2 +- system/database/drivers/sqlite/sqlite_result.php | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) (limited to 'system/database/drivers') diff --git a/system/database/drivers/mssql/mssql_result.php b/system/database/drivers/mssql/mssql_result.php index 230c1b55b..eb7afef70 100644 --- a/system/database/drivers/mssql/mssql_result.php +++ b/system/database/drivers/mssql/mssql_result.php @@ -135,7 +135,7 @@ class CI_DB_mssql_result extends CI_DB_result { */ function _data_seek($n = 0) { - mssql_data_seek($this->result_id, $n); + return mssql_data_seek($this->result_id, $n); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/mssql/mssql_utility.php b/system/database/drivers/mssql/mssql_utility.php index 4a49f533e..b24646123 100644 --- a/system/database/drivers/mssql/mssql_utility.php +++ b/system/database/drivers/mssql/mssql_utility.php @@ -61,7 +61,7 @@ class CI_DB_mssql_utility extends CI_DB_utility { */ function _drop_table($table) { - return "DROP TABLE ".$this->db->_escape_table($name); + return "DROP TABLE ".$this->db->_escape_table($table); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/mysql/mysql_result.php b/system/database/drivers/mysql/mysql_result.php index 4bfaf54a4..9b28dead7 100644 --- a/system/database/drivers/mysql/mysql_result.php +++ b/system/database/drivers/mysql/mysql_result.php @@ -135,7 +135,7 @@ class CI_DB_mysql_result extends CI_DB_result { */ function _data_seek($n = 0) { - mysql_data_seek($this->result_id, $n); + return mysql_data_seek($this->result_id, $n); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/mysql/mysql_utility.php b/system/database/drivers/mysql/mysql_utility.php index b0a7dfea7..32007d224 100644 --- a/system/database/drivers/mysql/mysql_utility.php +++ b/system/database/drivers/mysql/mysql_utility.php @@ -73,7 +73,7 @@ class CI_DB_mysql_utility extends CI_DB_utility { */ function _drop_table($table) { - return "DROP TABLE IF EXISTS ".$this->db->_escape_table($name); + return "DROP TABLE IF EXISTS ".$this->db->_escape_table($table); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/mysqli/mysqli_result.php b/system/database/drivers/mysqli/mysqli_result.php index 5e4e65ff7..be7ec356c 100644 --- a/system/database/drivers/mysqli/mysqli_result.php +++ b/system/database/drivers/mysqli/mysqli_result.php @@ -135,7 +135,7 @@ class CI_DB_mysqli_result extends CI_DB_result { */ function _data_seek($n = 0) { - mysqli_data_seek($this->result_id, $n); + return mysqli_data_seek($this->result_id, $n); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/mysqli/mysqli_utility.php b/system/database/drivers/mysqli/mysqli_utility.php index a7bdb708e..d5dbf2fb0 100644 --- a/system/database/drivers/mysqli/mysqli_utility.php +++ b/system/database/drivers/mysqli/mysqli_utility.php @@ -60,7 +60,7 @@ class CI_DB_mysqli_utility extends CI_DB_utility { */ function _drop_table($table) { - return "DROP TABLE IF EXISTS ".$this->db->_escape_table($name); + return "DROP TABLE IF EXISTS ".$this->db->_escape_table($table); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/postgre/postgre_result.php b/system/database/drivers/postgre/postgre_result.php index 76bd60187..f065e54fb 100644 --- a/system/database/drivers/postgre/postgre_result.php +++ b/system/database/drivers/postgre/postgre_result.php @@ -135,7 +135,7 @@ class CI_DB_postgre_result extends CI_DB_result { */ function _data_seek($n = 0) { - pg_result_seek($this->result_id, $n); + return pg_result_seek($this->result_id, $n); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/postgre/postgre_utility.php b/system/database/drivers/postgre/postgre_utility.php index 478e74276..bebe09415 100644 --- a/system/database/drivers/postgre/postgre_utility.php +++ b/system/database/drivers/postgre/postgre_utility.php @@ -74,7 +74,7 @@ class CI_DB_postgre_utility extends CI_DB_utility { */ function _drop_table($table) { - return "DROP TABLE ".$this->db->_escape_table($name)." CASCADE"; + return "DROP TABLE ".$this->db->_escape_table($table)." CASCADE"; } // -------------------------------------------------------------------- diff --git a/system/database/drivers/sqlite/sqlite_result.php b/system/database/drivers/sqlite/sqlite_result.php index 00045d06c..a406a935c 100644 --- a/system/database/drivers/sqlite/sqlite_result.php +++ b/system/database/drivers/sqlite/sqlite_result.php @@ -131,7 +131,7 @@ class CI_DB_sqlite_result extends CI_DB_result { */ function _data_seek($n = 0) { - sqlite_seek($this->result_id, $n); + return sqlite_seek($this->result_id, $n); } // -------------------------------------------------------------------- -- cgit v1.2.3-24-g4f1b