2 /* vim: set expandtab sw=4 ts=4 sts=4: */
12 require_once './libraries/common.inc.php';
17 require './libraries/db_common.inc.php';
18 require_once './libraries/sql_query_form.lib.php';
20 // After a syntax error, we return to this script
21 // with the typed query in the textarea.
26 * Gets informations about the database and, if it is empty, move to the
27 * "db_structure.php" script where table can be created
29 require './libraries/db_info.inc.php';
30 if ($num_tables == 0 && empty($db_query_force)) {
33 require './db_structure.php';
38 * Query box, bookmark, insert data from textfile
40 PMA_sqlQueryForm(true, false, isset($_REQUEST['delimiter']) ?
$_REQUEST['delimiter'] : ';');
45 require_once './libraries/footer.inc.php';