How to INSERT data into a MySQL database using Python

A guide on how to insert data into a MySQL database table using Python and the mysql-connector-python library.

This article guides you through connecting to a MySQL database and using Python to insert data into a table via an SQL INSERT statement.

import mysql.connector

# Connect to the MySQL database
conn = mysql.connector.connect(
    host="localhost",
    user="root",
    password="password",
    database="test_db"
)

# Create a cursor object
cursor = conn.cursor()

# SQL INSERT statement
sql = "INSERT INTO students (name, age, grade) VALUES (%s, %s, %s)"
values = ("Nguyen Van A", 21, "A")

# Execute the INSERT statement
cursor.execute(sql, values)

# Commit changes to the database
conn.commit()

print(f"{cursor.rowcount} record inserted into the table.")

# Close the connection
cursor.close()
conn.close()

Detailed explanation:

  1. import mysql.connector: Imports the mysql.connector library to allow MySQL connections.
  2. conn = mysql.connector.connect(...): Connects to the MySQL database using connection details such as host, user, password, and database.
  3. cursor = conn.cursor(): Creates a cursor object to execute SQL queries.
  4. sql = "INSERT INTO students (name, age, grade) VALUES (%s, %s, %s)": Defines the SQL INSERT statement with placeholders %s.
  5. values = ("Nguyen Van A", 21, "A"): Creates a tuple containing the values to be inserted into the table.
  6. cursor.execute(sql, values): Executes the INSERT statement with the provided values.
  7. conn.commit(): Saves changes to the database.
  8. print(f"{cursor.rowcount} record inserted into the table."): Prints the number of records inserted.
  9. cursor.close() and conn.close(): Closes the cursor and the connection to the database.

System Requirements:

  • Python 3.x
  • Library: mysql-connector-python

How to install the libraries needed to run the Python code above:

Use pip to install the library:

pip install mysql-connector-python

Tips:

  • Ensure that your table structure and columns match the values you intend to insert.
  • Always use conn.commit() after inserting data to ensure changes are saved to the database.


Related

Generate Captcha Code Using Python

A comprehensive guide on how to generate Captcha code using Python with the `captcha` library. This guide will help you understand how to create a simple Captcha to protect your forms from spam and bots.
Common Functions When Using Selenium Chrome in Python

A guide that introduces the most common functions used when working with Selenium and Chrome in Python, enabling tasks like searching, interacting with web elements, and browser navigation.
Comprehensive Guide to Using the print() Function in Python

A detailed guide on all the ways to use the print() function in Python, covering formatting options, parameters, and advanced usage.
How to GET JSON data from API using Python

This article will guide you on how to use Python to send a GET request to an API and receive JSON data. You will learn how to work with necessary libraries and handle the data.
How to DELETE data from a MySQL database using Python

A guide on how to use Prepared Statements in Python to delete data from a table in a MySQL database safely and effectively.
Convert accented Unicode characters to non-accented in Python

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using Python. This Python code efficiently handles Vietnamese text processing.
How to Post Data to API Using Python

This article guides you on how to send data to an API using the POST method in Python with the requests library, helping you better understand how to interact with web services.
Guide to Creating a Login Form in Python Using PyQT6

A detailed guide on how to create a login form in Python using PyQT6, including designing the interface and handling the login button event.
Creating video from images using MoviePy

A detailed guide on how to create a video from images using Python and the MoviePy library. The article includes source code and line-by-line explanations.
Removing background from images using Rembg in Python

A detailed guide on how to remove the background from images using Python and the Rembg library. The article includes source code and line-by-line explanations.

main.add_cart_success