How to query whether database exists in php

藏色散人
Release: 2023-03-07 16:20:02
Original
4474 people have browsed it

How to query whether the database exists: first create a new instance of MySQL or MySQL; then execute the statement "SELECT COUNT(*) AS `exists` FROM..."; finally check the value of the key exists, and Just check whether the database exists.

How to query whether database exists in php

Recommended: "PHP Video Tutorial"

Create a new instance of MySQL or MySQL (without specifying a default database) , and execute the following query (similar to Marc B's comment):

SELECT COUNT(*) AS `exists` FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMATA.SCHEMA_NAME='my_database_name'
Copy after login

Then you can check the value of key exists to see if the database exists.

The following is a sample code:

// statement to execute
$sql = 'SELECT COUNT(*) AS `exists` FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMATA.SCHEMA_NAME="my_database_name"';
// execute the statement
$query = $mysqli->query($sql);
if ($query === false) {
    throw new Exception($mysqli->error, $mysqli->errno);
}
// extract the value
$row = $query->fetch_object();
$dbExists = (bool) $row->exists;
Copy after login

The above is the detailed content of How to query whether database exists in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template