diff options
author | admin <devnull@localhost> | 2006-09-25 04:17:30 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-25 04:17:30 +0200 |
commit | a5e812c007b8dfbc4c117df379d63060f08b096a (patch) | |
tree | f21c197786638d4579995dbe2da6731617464c60 /system/database/DB_utility.php | |
parent | c9a8bab572388bbba541f1cf8f12a46e2103e447 (diff) |
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r-- | system/database/DB_utility.php | 50 |
1 files changed, 28 insertions, 22 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php index 39dc2cca2..c43b39950 100644 --- a/system/database/DB_utility.php +++ b/system/database/DB_utility.php @@ -24,9 +24,15 @@ */ class CI_DB_utility { + var $db; + + function CI_DB_utility() + { + // Assign the main database object to $this->db + $obj =& get_instance(); + $this->db =& $obj->db; + } - - // -------------------------------------------------------------------- /** * Database Version Number. Returns a string containing the @@ -39,19 +45,19 @@ class CI_DB_utility { { if (FALSE === ($sql = $this->_version())) { - if ($this->db_debug) + if ($this->db->db_debug) { - return $this->display_error('db_unsupported_function'); + return $this->db->display_error('db_unsupported_function'); } return FALSE; } - if ($this->dbdriver == 'oci8') + if ($this->db->dbdriver == 'oci8') { return $sql; - } + } - $query = $this->query($sql); + $query = $this->db->query($sql); $row = $query->row(); return $row->ver; } @@ -65,18 +71,18 @@ class CI_DB_utility { * @return array */ function tables() - { + { if (FALSE === ($sql = $this->_show_tables())) { - if ($this->db_debug) + if ($this->db->db_debug) { - return $this->display_error('db_unsupported_function'); + return $this->db->display_error('db_unsupported_function'); } return FALSE; } $retval = array(); - $query = $this->query($sql); + $query = $this->db->query($sql); if ($query->num_rows() > 0) { @@ -104,8 +110,8 @@ class CI_DB_utility { * @return boolean */ function table_exists($table_name) - { - return ( ! in_array($this->dbprefix.$table_name, $this->tables())) ? FALSE : TRUE; + { + return ( ! in_array($this->db->dbprefix.$table_name, $this->tables())) ? FALSE : TRUE; } // -------------------------------------------------------------------- @@ -121,23 +127,23 @@ class CI_DB_utility { { if ($table == '') { - if ($this->db_debug) + if ($this->db->db_debug) { - return $this->display_error('db_field_param_missing'); + return $this->db->display_error('db_field_param_missing'); } return FALSE; } - if (FALSE === ($sql = $this->_show_columns($this->dbprefix.$table))) + if (FALSE === ($sql = $this->_show_columns($this->db->dbprefix.$table))) { - if ($this->db_debug) + if ($this->db->db_debug) { - return $this->display_error('db_unsupported_function'); + return $this->db->display_error('db_unsupported_function'); } return FALSE; } - $query = $this->query($sql); + $query = $this->db->query($sql); $retval = array(); foreach($query->result_array() as $row) @@ -168,14 +174,14 @@ class CI_DB_utility { { if ($table == '') { - if ($this->db_debug) + if ($this->db->db_debug) { - return $this->display_error('db_field_param_missing'); + return $this->db->display_error('db_field_param_missing'); } return FALSE; } - return $this->_field_data($this->dbprefix.$table); + return $this->_field_data($this->db->dbprefix.$table); } // -------------------------------------------------------------------- |