84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
給定 URI 樣式的資料庫連接字串:
mysql://:@:/
有沒有辦法直接在MySQL 命令列用戶端中使用該字串,而無需將其分解為熟悉的mysql -u -h -p ... 格式? < /p>
mysql -u -h -p ...
我在這裡找到了一些對此的討論,但建議的選項--uri在我的客戶端(mysql Ver 15.1 Distrib 10.11.2-MariaDB)中不存在。
--uri
您必須使用mysqlsh(mysql shell)而不是mysql。
mysqlsh
mysql
使用--uri=選項。
--uri=
https://dev.mysql.com /doc/mysql-shell/8.0/en/mysqlsh.html#option_mysqlsh_uri
您必須使用
mysqlsh
(mysql shell)而不是mysql
。使用
--uri=
選項。https://dev.mysql.com /doc/mysql-shell/8.0/en/mysqlsh.html#option_mysqlsh_uri
##