Simple tutorial for deleting a MySQL database _ MySQL

Source: Internet
Author: User
This article describes how to delete a MySQL database. Use mysqladmin to delete a database:

Special permissions are required to create or delete a MySQL database. Therefore, we assume that you can use mysql mysqladmin binary to create any database for root user access.

Delete any database with caution because it will lose all available data in the database.

[root@host]# mysqladmin -u root -p drop TUTORIALSEnter password:******

Use a PHP script to delete a database:

PHP uses the mysql_query function to create or delete a MySQL database. This function has two parameters. if success returns TRUE or failure, FALSE is returned.
Example:

bool mysql_query( sql, connection );

Example:

In the following example, delete a database:

Deleting MySQL Database - by www.jb51.com<?php$dbhost = 'localhost:3036';$dbuser = 'root';$dbpass = 'rootpassword';$conn = mysql_connect($dbhost, $dbuser, $dbpass);if(! $conn ){ die('Could not connect: ' . mysql_error());}echo 'Connected successfully
';$sql = 'DROP DATABASE TUTORIALS';$retval = mysql_query( $sql, $conn );if(! $retval ){ die('Could not delete database: ' . mysql_error());}echo "Database TUTORIALS deleted successfully\n";mysql_close($conn);?>

Warning when deleting a database, the PHP script will not prompt any confirmation. Therefore, be careful when deleting a MySQL database.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.