Connect to MySQL/MariaDB from command line client using URI connection string?
P粉545218185
P粉545218185 2023-08-30 14:30:55
0
1
556
<p>A database connection string given the URI pattern: </p> <pre class="brush:php;toolbar:false;">mysql://<user>:<pass>@<host>:<port>/<database></pre> <p>Is there a way to use this string directly in the MySQL command line client without breaking it into the familiar <code>mysql -u <user> -h <host> -p ... </code> Format? < /p> <p>I found some discussion about this here, but the suggested option <code>--uri</code> does not exist in my client (mysql Ver 15.1 Distrib 10.11.2-MariaDB). </p>
P粉545218185
P粉545218185

reply all(1)
P粉985686557

You must use mysqlsh (mysql shell) instead of mysql.

Use the --uri= option.

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template