MySQL 连接
-
使用MySQL二进制文件的MySQL连接
您可以在命令提示符下使用mysql二进制文件建立MySQL数据库。例:这是一个从命令提示符连接到MySQL服务器的简单示例[root@host]# mysql -u root -p Enter password:******
这将为您提供mysql>命令提示符,您可以在其中执行任何SQL命令。以下是上述命令的结果,以下代码块显示了以上代码的结果Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.6.46 Source distribution Copyright (c) 2000, 2019, 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 current input statement. mysql>
您可以随时在mysql>提示符下使用exit
命令从MySQL数据库断开连接。mysql> exit Bye
-
使用PHP脚本的MySQL连接
PHP提供mysqli_connect()函数来打开数据库连接。该函数有六个参数,如果成功则返回MySQL链接标识符,如果失败则返回FALSE。您可以随时使用另一个PHP函数mysqli_close()与MySQL数据库断开连接。该函数采用单个参数,该参数是 mysqli_connect() 函数返回的连接。如果未指定资源,则关闭最后打开的数据库。如果成功关闭连接,此函数将返回true,否则返回false。尝试以下示例连接到MySQL服务器
尝试一下<html> <head> <title>Connecting MySQL Server</title> </head> <body> <?php $dbhost = 'mysql'; $dbuser = 'test'; $dbpass = '123456'; $dbname = 'test'; $conn = mysqli_connect(dbhost, dbuser, dbpass, $dbname); if(! $conn ) { die('Could not connect: ' . mysqli_error($conn)); } echo 'Connected successfully'; mysqli_close($conn); ?> </body> </html>