The way to Create a MySQL Database in Python

As a way to create a MySQL database in Python, you first have to provoke a connection utilizing the mysql.connector. You may find out about find out how to create a connection to MySQL right here.

The way to Create a Database in Python#

Making a database is straightforward.

First, ensure you have an lively connection to your database, after which set a cursor.

Upon getting this, problem the execute command to create your database.

import mysql.connector

mydb = mysql.connector.join(
  host = "localhost",
  person = "username",
  password = "YoUrPaSsWoRd"
)

mycursor = mydb.cursor()

mycursor.execute("CREATE DATABASE your_database")

The way to Verify if a MySQL Database Exists in Python#

Utilizing an identical connection as described above, execute the SHOW DATABASES question.

import mysql.connector

mydb = mysql.connector.join(
  host = "localhost",
  person = "username",
  password = "YoUrPaSsWoRd"
)

mycursor = mydb.cursor()

mycursor.execute("SHOW DATABASES")

for x in mycursor:
  print(x)

The way to Hook up with a MySQL Database in Python#

Now that you understand which database to hook up with, you possibly can specify it straight to start with.

import mysql.connector

mydb = mysql.connector.join(
  host = "localhost",
  person = "username",
  password = "YoUrPaSsWoRd",
  database="your_database"
)