diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-01-16 22:10:09 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-01-16 22:10:09 +0100 |
commit | 39b622db9bda38282a32bb45623da63efe685729 (patch) | |
tree | 0d1a1729dc544ebfd1d3dfb11b2ff78759bcf7be /system/database/drivers/odbc/odbc_result.php | |
parent | f4615fec22671262e95d3a852f8b9088314118f2 (diff) |
Many new Active Record functions, and another whack of stuff
Diffstat (limited to 'system/database/drivers/odbc/odbc_result.php')
-rw-r--r-- | system/database/drivers/odbc/odbc_result.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/system/database/drivers/odbc/odbc_result.php b/system/database/drivers/odbc/odbc_result.php index e909fd743..53c317356 100644 --- a/system/database/drivers/odbc/odbc_result.php +++ b/system/database/drivers/odbc/odbc_result.php @@ -192,7 +192,6 @@ class CI_DB_odbc_result extends CI_DB_result { * @access private
* @return object
*/
-
function _odbc_fetch_object(& $odbc_result) {
$rs = array();
$rs_obj = false;
@@ -215,7 +214,6 @@ class CI_DB_odbc_result extends CI_DB_result { * @access private
* @return array
*/
-
function _odbc_fetch_array(& $odbc_result) {
$rs = array();
$rs_assoc = false;
|