db->database) OR ! @unlink($this->db->database)) { if ($this->db_debug) { return $this->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(); } // -------------------------------------------------------------------- /** * Show table query * * Generates a platform-specific query string so that the table names can be fetched * * @access private * @return string */ function _list_tables() { return "SELECT name from sqlite_master WHERE type='table'"; } // -------------------------------------------------------------------- /** * Drop Table * * Unsupported feature in SQLite * * @access private * @return bool */ function _drop_table($table) { if ($this->db_debug) { return $this->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 return FALSE; } } ?>