Routines uses CHARACTER SET

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@201 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2007-07-17 05:31:45 +00:00
parent ce12469b70
commit ff442a4ccf

View file

@ -9,12 +9,12 @@ if ($_POST && !$error) {
$set = array();
ksort($_POST["fields"]);
foreach ($_POST["fields"] as $field) {
$set[] = idf_escape($field["field"]) . process_type($field);
$set[] = idf_escape($field["field"]) . process_type($field, "CHARACTER SET");
}
if ($mysql->query(
"CREATE $routine " . idf_escape($_POST["name"])
. " (" . implode(", ", $set) . ")"
. (isset($_GET["function"]) ? " RETURNS" . process_type($_POST["returns"]) : "") . "
. (isset($_GET["function"]) ? " RETURNS" . process_type($_POST["returns"], "CHARACTER SET") : "") . "
$_POST[definition]"
)) {
redirect(substr($SELF, 0, -1), (strlen($_GET["createp"]) ? lang('Routine has been altered.') : lang('Routine has been created.')));