可以使用MySQL二進制在命令提示符下建立MySQL數據庫的連接。
下面是一個簡單的例子,從命令提示符連接MySQL服務器:
D:\software\mysql-5.6.25-winx64\bin> mysql -u root -p Enter password:
注意,這裡密碼為空,直接回車就就進入mysql>命令提示符下,能夠執行任何SQL命令。以下是上述命令的結果:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.6.25 MySQL Community Server (GPL) Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
在上面的例子中,我們使用 root 用戶,但可以使用任何其他用戶。任何用戶將能夠執行所有的SQL操作(前提這個用戶有對應執行SQL權限)。
任何時候使用exit命令在mysql>提示符下,從MySQL數據庫斷開。
mysql> exit Bye
PHP提供mysql_connect()函數打開一個數據庫連接。這個函數有五個參數,返回成功一個MySQL連接標識符,失敗返回FALSE。
connection mysql_connect(server,user,passwd,new_link,client_flag);
MYSQL_CLIENT_SSL - 使用SSL加密
MYSQL_CLIENT_COMPRESS - 使用壓縮協議
MYSQL_CLIENT_IGNORE_SPACE - 允許在函數名後使用空格
MYSQL_CLIENT_INTERACTIVE - 關閉連接之前允許的閒置超時互動秒數
可以使用另一個PHP函數:mysql_close() 隨時斷開從MySQL數據庫的連接。這個函數有一個參數,它是由mysql_connect()函數返回一個連接。
bool mysql_close ( resource $link_identifier );
如果沒有指定的資源,那麼最後一個打開的數據庫關閉。如果關閉連接成功該函數返回true,否則返回false。
試試下面的例子連接一個MySQL服務器:
<html> <head> <title>Connecting MySQL Server</title> </head> <body> <?php $dbhost = 'localhost'; $dbuser = 'root'; $dbpass = '123456'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } echo 'Connected successfully'; mysql_close($conn); ?> </body> </html>