dbi = $dbi; $this->db = $dbName; $this->defaultNoOfColumns = $defaultNoOfColumns; $this->tables = $this->dbi->getTables($this->db); } /** * Get Multi-Table query page HTML * * @return string Multi-Table query page HTML */ public function getFormHtml() { $tables = []; foreach($this->tables as $table) { $tables[$table]['hash'] = md5($table); $tables[$table]['columns'] = array_keys( $this->dbi->getColumns($this->db, $table) ); } return Template::get('database/multi_table_query/form')->render([ 'db' => $this->db, 'tables' => $tables, 'default_no_of_columns' => $this->defaultNoOfColumns, ]); } /** * Displays multi-table query results * * @param string $sqlQuery The query to parse * @param string $db The current database * @param string $pmaThemeImage Uri of the PMA theme image * * @return void */ public static function displayResults($sqlQuery, $db, $pmaThemeImage) { list( $analyzedSqlResults, $db, $tableFromSql ) = ParseAnalyze::sqlQuery($sqlQuery, $db); extract($analyzedSqlResults); $goto = 'db_multi_table_query.php'; $sql = new Sql(); $sql->executeQueryAndSendQueryResponse( null, // analyzed_sql_results false, // is_gotofile $db, // db null, // table null, // find_real_end null, // sql_query_for_bookmark - see below null, // extra_data null, // message_to_show null, // message null, // sql_data $goto, // goto $pmaThemeImage, // pmaThemeImage null, // disp_query null, // disp_message null, // query_type $sqlQuery, // sql_query null, // selectedTables null // complete_query ); } }