Find out how to Create a MySQL Database in Python


With a view to create a MySQL database in Python, you first must provoke a connection utilizing the mysql.connector. You’ll be able to find out about learn how to create a connection to MySQL right here.

Find out how to Create a Database in Python

Making a database is easy.

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

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

import mysql.connector

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

mycursor = mydb.cursor()

mycursor.execute("CREATE DATABASE your_database")

Find out how to Examine 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",
  consumer = "username",
  password = "YoUrPaSsWoRd"
)

mycursor = mydb.cursor()

mycursor.execute("SHOW DATABASES")

for x in mycursor:
  print(x)

Find out how to Connect with a MySQL Database in Python

Now that you recognize which database to hook up with, you’ll be able to specify it immediately at first.

import mysql.connector

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

Leave a Reply