標籤:
一,mysql命令列參數
Usage: mysql [OPTIONS] [database] //命令方式
-?, --help //顯示協助資訊並退出
-I, --help //顯示協助資訊並退出
--auto-rehash //自動補全功能,就像linux裡面,按Tab鍵出提示差不多,下面有例子
-A, --no-auto-rehash //預設狀態是沒有自動補全功能的。-A就是不要自動補全功能
-B, --batch //ysql不使用曆史檔案,禁用互動
(Enables --silent)
--character-sets-dir=name //字型集的安裝目錄
--default-character-set=name //設定資料庫的預設字元集
-C, --compress //在用戶端和伺服器端傳遞資訊時使用壓縮
-#, --debug[=#] //bug調用功能
-D, --database=name //使用哪個資料庫
--delimiter=name //mysql預設命令結束符是分號,下面有例子
-e, --execute=name //執行mysql的sql語句
-E, --vertical //垂直列印查詢輸出
-f, --force //如果有錯誤跳過去,繼續執行下面的
-G, --named-commands
/*Enable named commands. Named commands mean this program‘s
internal commands; see mysql> help . When enabled, the
named commands can be used from any line of the query,
otherwise only from the first line, before an enter.
Disable with --disable-named-commands. This option is
disabled by default.*/
-g, --no-named-commands
/*Named commands are disabled. Use \* form only, or use
named commands only in the beginning of a line ending
with a semicolon (;) Since version 10.9 the client now
starts with this option ENABLED by default! Disable with
‘-G‘. Long format commands still work from the first
line. WARNING: option deprecated; use
--disable-named-commands instead.*/
-i, --ignore-spaces //忽視函數名後面的空格.
--local-infile //啟動/禁用 LOAD DATA LOCAL INFILE.
-b, --no-beep //sql錯誤時,禁止嘟的一聲
-h, --host=name //設定已連線的服務器名或者Ip
-H, --html //以html的方式輸出
-X, --xml //以xml的方式輸出
--line-numbers //顯示錯誤的行號
-L, --skip-line-numbers //忽略錯誤的行號
-n, --unbuffered //每執行一次sql後,重新整理緩衝
--column-names //查尋時顯示列資訊,預設是加上的
-N, --skip-column-names //不顯示列資訊
-O, --set-variable=name //設定變數用法是--set-variable=var_name=var_value
--sigint-ignore //忽視SIGINT符號(登入退出時Control-C的結果)
-o, --one-database //忽視除了為命令列中命名的預設資料庫的語句。可以幫跳過日誌中的其它資料庫的更新。
--pager[=name] //使用分頁器來顯示查詢輸出,這個要在linux可以用more,less等。
--no-pager //不使用分頁器來顯示查詢輸出。
-p, --password[=name] //輸入密碼
-P, --port=# //設定連接埠
--prompt=name //設定mysql提示符
--protocol=name //使用什麼協議
-q, --quick //不緩衝查詢的結果,順序列印每一行。如果輸出被掛起,伺服器會慢下來,mysql不使用曆史檔案。
-r, --raw //寫列的值而不轉義轉換。通常結合--batch選項使用。
--reconnect //如果與伺服器之間的串連斷開,自動嘗試重新串連。禁止重新串連,使用--disable-reconnect。
-s, --silent //一行一行輸出,中間有tab分隔
-S, --socket=name //串連伺服器的sockey檔案
--ssl //啟用ssl串連,不啟用--skip-ssl
--ssl-ca=name //CA認證
--ssl-capath=name //CA路徑
--ssl-cert=name //X509 認證
--ssl-cipher=name //SSL cipher to use (implies --ssl).
--ssl-key=name //X509 密鑰名
--ssl-verify-server-cert //串連時審核伺服器的認證
-t, --table //以表格的形勢輸出
--tee=name //將輸出拷貝添加到給定的檔案中,禁時用--disable-tee
--no-tee //根--disable-tee功能一樣
-u, --user=name //使用者名稱
-U, --safe-updates //Only allow UPDATE and DELETE that uses keys.
-U, --i-am-a-dummy //Synonym for option --safe-updates, -U.
-v, --verbose //輸出mysql執行的語句
-V, --version //版本資訊
-w, --wait //伺服器down後,等待到重起的時間
--connect_timeout=# //串連前要等待的時間
--max_allowed_packet=# //伺服器接收/發送包的最大長度
--net_buffer_length=# //TCP / IP和通訊端通訊緩衝區大小。
--select_limit=# //使用--safe-updates時SELECT語句的自動限制
--max_join_size=# //使用--safe-updates時聯結中的行的自動限制
--secure-auth //拒絕用(pre-4.1.1)的方式串連到資料庫
--server-arg=name //Send embedded server this as a parameter.
--show-warnings //顯示警告
mysql命令列參數