搜尋

首頁  >  問答  >  主體

使用 URI 連接字串從命令列客戶端連接到 MySQL/MariaDB?

<p>給定 URI 樣式的資料庫連接字串:</p> <pre class="brush:php;toolbar:false;">mysql://<user>:<pass>@<host>:<port>/<database></pre> <p>有沒有辦法直接在MySQL 命令列用戶端中使用該字串,而無需將其分解為熟悉的<code>mysql -u <user> -h <host> -p ... </code> 格式? < /p> <p>我在這裡找到了一些對此的討論,但建議的選項<code>--uri</code>在我的客戶端(mysql Ver 15.1 Distrib 10.11.2-MariaDB)中不存在。 </p>
P粉545218185P粉545218185484 天前555

全部回覆(1)我來回復

  • P粉985686557

    P粉9856865572023-08-31 11:40:01

    您必須使用mysqlsh(mysql shell)而不是mysql

    使用--uri=<您的连接字符串>選項。

    https://dev.mysql.com /doc/mysql-shell/8.0/en/mysqlsh.html#option_mysqlsh_uri

    ##

    回覆
    0
  • 取消回覆