连接到 MySQL 可以通过编写代码或者使用命令行操作实现。以下是常用的两种方法。
一、在代码中检查连接状态
以上代码通过 mysqli_connect() 函数连接到 MySQL 数据库并检查连接状态。如果连接失败,则输出错误信息;如果连接成功,则输出连接成功信息。
二、使用命令行检查连接状态
shell>mysql -u root -p
Enter password: *****
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 12345
Server version: 8.0.26 MySQL Community Server - GPL
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql>
以上命令通过命令行连接到 MySQL 数据库并检查连接状态。如果连接成功,则显示 MySQL 的版本信息;如果连接失败,则显示错误信息。