Home>Article>Operation and Maintenance> How to read the database in phpstudy
How to view the database in PHPstudy
Directly connect to the MySQL command line
mysql -u root -p
SHOW DATABASES;
This will display all available databases.
Using MySQL Workbench
In the Connection dialog box, configure the following settings:
Open PHPMyAdmin (http://localhost/phpmyadmin) via PHPMyAdmin
The above is the detailed content of How to read the database in phpstudy. For more information, please follow other related articles on the PHP Chinese website!