mysql的程式組成

2022-07-10 11:45:11 字數 1569 閱讀 4423

客戶端

伺服器端

語法:mysql [options] [database]

常用的options:

-uusername //指定使用者名稱,預設為root

-ppassword //指定使用者的密碼

-p# //指定資料庫監聽的埠,這裡的#需用實際的埠號代替,如-p3306

-v //檢視當前使用的mysql版本

-e //不登入mysql執行sql語句後退出,常用於指令碼

-s //指定套接字的路徑

例項

[root@localhost ~]# mysql -v

mysql ver 15.1 distrib 5.5.68-mariadb, for linux (x86_64) using readline 5.1

[root@localhost ~]# mysql -uroot -p123456 -h127.0.0.1

welcome to the mariadb monitor. commands end with ; or \g.

your mariadb connection id is 4

server version: 5.5.68-mariadb mariadb server

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mariadb [(none)]>

[root@localhost ~]# mysql -uroot -p123456 -p3306

welcome to the mariadb monitor. commands end with ; or \g.

your mariadb connection id is 6

server version: 5.5.68-mariadb mariadb server

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mariadb [(none)]>

[root@localhost ~]# mysql -u root -p -e 'show databases;'

enter password:

+--------------------+

| database |

+--------------------+

| information_schema |

| mysql |

| performance_schema |

| test |

+--------------------+

ip socket

unix sock

mysql的程式組成

1 客戶端 mysql 客戶端程式 mysqldump mysql備份工具 mysqladmin mysql管理工具 mysqlbinlog 二進位制日誌查詢工具 2 服務端 mysqld 服務端程式 mysqld safe 建議安全執行的服務端程式 mysqld multi 多例項mysql程式 ...

程式的組成

1 標頭檔案 包含結構宣告和使用這些結構的函式的原型。2 源 檔案 包含與機構有關的函式的 1 函式原型 最好不要在標頭檔案中包含函式的定義 2 使用 define或const定義的符號常量。3 結構宣告 4 類宣告 5 模板函式 5 內聯函式 將結構宣告放在標頭檔案中是可以的,因為它們不建立變數,...

C 程式的組成

函式在被呼叫時,在棧中是以乙個棧幀的形式存在的,棧分為公升棧和降棧,不同架構,棧是不同的.t1堆 程式中的靜態區 t2 程式的組成 在上圖中 堆和棧是直到程式執行是才會存在,是程式執行的基礎 file header 用於告訴作業系統檔案是可執行檔案,和其他一些與執行相關資訊 text section...