only since MySQL 5.0.0
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2006-06-15 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* libraries/sql_query_form.lib.php: Delimiter only if MySQL supports it
|
||||||
|
|
||||||
2006-06-13 Marc Delisle <lem9@users.sourceforge.net>
|
2006-06-13 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/sql_query_form.lib.php, libraries/import/sql.php, lang/*:
|
* libraries/sql_query_form.lib.php, libraries/import/sql.php, lang/*:
|
||||||
bug # 1469699, can't create a stored procedure
|
bug # 1469699, can't create a stored procedure
|
||||||
|
@@ -354,10 +354,12 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false)
|
|||||||
}
|
}
|
||||||
echo '</div>' . "\n";
|
echo '</div>' . "\n";
|
||||||
echo '<div class="formelement">' . "\n";
|
echo '<div class="formelement">' . "\n";
|
||||||
echo '<label for="id_sql_delimiter">[ ' . $GLOBALS['strDelimiter']
|
if (PMA_MYSQL_INT_VERSION >= 50000) {
|
||||||
.'</label>' . "\n";
|
echo '<label for="id_sql_delimiter">[ ' . $GLOBALS['strDelimiter']
|
||||||
echo '<input type="text" name="sql_delimiter" size="3" value=";" '
|
.'</label>' . "\n";
|
||||||
.'id="id_sql_delimiter" /> ]' . "\n";
|
echo '<input type="text" name="sql_delimiter" size="3" value=";" '
|
||||||
|
.'id="id_sql_delimiter" /> ]' . "\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo '<input type="checkbox" name="show_query" value="1" '
|
echo '<input type="checkbox" name="show_query" value="1" '
|
||||||
.'id="checkbox_show_query" checked="checked" />' . "\n"
|
.'id="checkbox_show_query" checked="checked" />' . "\n"
|
||||||
|
Reference in New Issue
Block a user