db->database) OR ! @unlink($this->db->database)) { if ($this->db->db_debug) { return $this->db->display_error('db_unable_to_drop'); } return FALSE; } return TRUE; } // -------------------------------------------------------------------- /** * List databases * * I don't believe you can do a database listing with SQLite * since each database is its own file. I suppose we could * try reading a directory looking for SQLite files, but * that doesn't seem like a terribly good idea * * @access private * @return bool */ function _list_databases() { if ($this->db_debug) { return $this->display_error('db_unsuported_feature'); } return array(); } // -------------------------------------------------------------------- /** * Drop Table * * Unsupported feature in SQLite * * @access private * @return bool */ function _drop_table($table) { if ($this->db->db_debug) { return $this->db->display_error('db_unsuported_feature'); } return array(); } // -------------------------------------------------------------------- /** * Optimize table query * * Is optimization even supported in SQLite? * * @access private * @param string the table name * @return object */ function _optimize_table($table) { return FALSE; } // -------------------------------------------------------------------- /** * Repair table query * * Are table repairs even supported in SQLite? * * @access private * @param string the table name * @return object */ function _repair_table($table) { return FALSE; } // -------------------------------------------------------------------- /** * SQLite Export * * @access private * @param array Preferences * @return mixed */ function _backup($params = array()) { // Currently unsupported return $this->db->display_error('db_unsuported_feature'); } } ?>