gpt4 book ai didi

mysql - 从 BASH 脚本调用 mysql 时的 MariaDB --init-command

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:13:16 24 4
gpt4 key购买 nike

我是 Stack Overflow 的新用户,所以对于任何可能违反网站礼仪的行为,我提前表示歉意。

我正在尝试创建一个 BASH 脚本,该脚本将生成一个命令来调用 MariaDB 监视器,即 mysql。我希望此 mysql 命令包含 --init-command 选项。我想要 --init-command 选项将用户变量列表设置为其值,如配置文件中指定的那样。

该脚本构建的字符串对于我的目的来说似乎是正确的,但是当它调用 mysql 时,会生成一个错误。如果我从脚本打印出生成的字符串,它似乎正是我试图创建的。

我将其归结为以下代码示例:

#!/bin/sh
declare foo="name"
declare bar="value"
declare invoke="mysql -p -D information_schema"
declare opts=" --init-command='SET @$foo:=\"$bar\"'"
invoke+=$opts
echo $invoke
$invoke

当我执行这个脚本时,结果如下:

$ example.sh
mysql -p -D information_schema --init-command='SET @name:="value"'
Enter password:
ERROR 1044 (42000): Access denied for user 'Bill'@'%' to database '@name:="value"''

这个错误信息似乎没有意义。

但是,如果我复制生成的命令,并将其粘贴回命令提示符,它会请求我的密码,并按我预期的方式进行,如下所示:

$ mysql -p -D information_schema --init-command='SET @name:="value"'
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 171
Server version: 10.3.11-MariaDB Source distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [information_schema]> SELECT @name;
+-------+
| @name |
+-------+
| value |
+-------+
1 row in set (0.000 sec)

MariaDB [information_schema]>

演示--init-command选项中的SET命令已成功传递给MariaDB监视器,并执行。

我不知道这是 Linux 问题、BASH 问题还是 MariaDB 问题。因此,虽然我花了很多时间试图找到答案,但我真的不知道问题出在哪里,因此,我的研究重点在哪里。

请注意:我在示例中只使用了 information_schema 数据库,因为我希望任何试图重现此问题的人都可以使用该数据库。

预先感谢您的协助。

最佳答案

一些选项:

选项 1:

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

mysql -p -D information_schema --init-command="SET @$foo:='$bar';"

选项 2:

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

opts=(--init-command="SET @$foo:='$bar';")
invoke=(mysql -p -D information_schema "$opts")
"${invoke[@]}"

选项 3:

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

#define
invoke() {
opts=(--init-command="SET @$foo:='$bar'")

if [[ -v opts ]]; then
invoke=(mysql -p -D information_schema "$opts")
else
invoke=(mysql -p -D information_schema)
fi

"${invoke[@]}"
}

#call
invoke

选项 4:危险,出于安全原因不推荐该选项。

#!/bin/sh

# USING BASH
# FILE: bash_mariadb.sh

foo="\`name\`"
bar="value"

invoke="mysql -p -D information_schema"
opts=" --init-command='SET @$foo:=\"$bar\"'"
invoke+=$opts
eval $invoke

在所有情况下:

$ ./bash_mariadb.sh
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 1
Server version: 10.3.11-MariaDB Source distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [information_schema]> SELECT @`name`;
+---------+
| @`name` |
+---------+
| value |
+---------+
1 row in set (0.000 sec)

关于mysql - 从 BASH 脚本调用 mysql 时的 MariaDB --init-command,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58229196/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com