From 76b344227dfbf795c5d37b21a2026b4a42bdc3e5 Mon Sep 17 00:00:00 2001 From: Romain Prieto Date: Sun, 11 May 2014 11:20:38 +1000 Subject: [PATCH] mysql: remove "or" example + fix token syntax The "or" example breaks tools that assume 1 command example per description --- pages/common/mysql.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pages/common/mysql.md b/pages/common/mysql.md index db1b2c5dc..7170969dc 100644 --- a/pages/common/mysql.md +++ b/pages/common/mysql.md @@ -2,18 +2,14 @@ > the MySQL command-line tool -- Connect to database *database_name* +- Connect to a database `mysql {{database_name}}` -- Connect to database *database_name* using *user* and *password* credentials. +- Connect to a database using credentials `mysql -u {{user}} -p{{password}} {{database_name}}` -or - -`mysql --user={{user}} --password={{password}} {{database_name}}` - - Execute SQL statements in a script file (batch file) -`mysql {database_name} < script.sql` \ No newline at end of file +`mysql {{database_name}} < {{script.sql}}`