Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Python Database
  • Python MySQL
  • Python SQLite
  • Python MongoDB
  • PostgreSQL
  • SQLAlchemy
  • Django
  • Flask
  • SQL
  • ReactJS
  • Vue.js
  • AngularJS
  • API
  • REST API
  • Express.js
  • NodeJS
Open In App
Next Article:
Retrieve Image and File stored as a BLOB from MySQL Table using Python
Next article icon

Working with MySQL BLOB in Python

Last Updated : 13 Jun, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

In Python Programming, We can connect with several databases like MySQL, Oracle, SQLite, etc., using inbuilt support. We have separate modules for each database. We can use SQL Language as a mediator between the python program and database. We will write all queries in our python program and send those commands to the database. So, Using these programs, we can perform several operations such as Insertion, Deletion, Updating, and Retrieving.

Here, In this article, We will discuss working with MySQL BLOB in python. With the help of BLOB(Large Binary Object) data type in MySQL, we can store files or images in our database in binary format.

Installation of MySQL Connector:

This connector will connect our python program to database. Just run this command,

Command:

pip install mysql-connector-python

Important steps for Python Database Programming:

  • Import MySQL database Module
import mysql.connector
  • For creating a connection between Python Program and Database. Using connect() method, We will connect the python program with our database.

connection = mysql.connector.connect(host='localhost', database='<database_name>', user='<User_name>', password='<password>')

  • Now, create a cursor object by using cursor() method for executing the SQL Queries and holding the result in an object.
cursor = connection.cursor()
  • For executing SQL queries, we will use a cursor object. For example,
cursor.execute("select * from table_name")
  • Finally, Once we are done with our operations, we have to close the resources.
cursor.close() con.close()

We are done with the basic steps of connection. Now, Let's discuss the main agenda of this article which is the practical implementation of BLOB data type in MySQL Python, 

  • First, We need to create a database in MySQL using the below command.
create database geeksforgeeks;

For Example: 

  • Creating a function through which we can convert images or files in binary format.
Python3
def convertData(filename):        # Convert images or files data to binary format     with open(filename, 'rb') as file:         binary_data = file.read()          return binary_data 
  • Check Whether Database Connection is created or not using Python Program. Let's have a look in below code:
Python3
import mysql.connector   connection = mysql.connector.connect(     host='localhost', database='geeksforgeeks',     user='root', password='shubhanshu')  cursor = connection.cursor()  if connection is not None:     print('Connected Successfully') else:     print('Connection Failed') 

We are done with all basic which is required. Let's see the complete code for inserting the images or files in the MySQL database using Python Programs:

Python3
import mysql.connector   # Convert images or files data to binary format def convert_data(file_name):     with open(file_name, 'rb') as file:         binary_data = file.read()     return binary_data   try:     connection = mysql.connector.connect(host='localhost',                                           database='geeksforgeeks',                                           user='root',                                           password='shubhanshu')     cursor = connection.cursor()     # create table query     create_table = """CREATE TABLE demo(id INT PRIMARY KEY,\     name VARCHAR (255) NOT NULL, profile_pic BLOB NOT NULL, \     imp_files BLOB NOT NULL) """      # Execute the create_table query first     cursor.execute(create_table)     # printing successful message     print("Table created Successfully")      query = """ INSERT INTO demo(id, name, profile_pic, imp_files)\     VALUES (%s,%s,%s,%s)"""      # First Data Insertion     student_id = "1"     student_name = "Shubham"     first_profile_picture = convert_data("D:\GFG\images\shubham.png")     first_text_file = convert_data('D:\GFG\details1.txt')      # Inserting the data in database in tuple format     result = cursor.execute(         query, (student_id, student_name, first_profile_picture, first_text_file))     # Committing the data     connection.commit()     print("Successfully Inserted Values")  # Print error if occurred except mysql.connector.Error as error:     print(format(error))  finally:        # Closing all resources     if connection.is_connected():                cursor.close()         connection.close()         print("MySQL connection is closed") 

Output:

The table formed in MySQL:

Explanation:

  • Establishing the connection with MySQL database.
  • Write the create table Query and Using cursor object, Executing it.
  • Now, Insert data into a table using SQL query and stored in query variable.
  • Storing the data in variables such as student_id = "1",  Student_name = "Shubham" and for images or files, first we are converting those files into binary data and then stored into a variables.
  • Using cursor object, Executing the query. Inserting the data in the database in tuple format.
  • Using commit() method, We are saving the data.
  • After completing all operations, we have to close all the resources such as the connection and cursor object.

Click here to download PNG file and TXT file. 

Video Demonstration:


Next Article
Retrieve Image and File stored as a BLOB from MySQL Table using Python

S

shubhanshuarya007
Improve
Article Tags :
  • Python
  • Python-mySQL
Practice Tags :
  • python

Similar Reads

    Python MySQL
    Python MySQL Connector is a Python driver that helps to integrate Python and MySQL. This Python MySQL library allows the conversion between Python and MySQL data types. MySQL Connector API is implemented using pure Python and does not require any third-party library.  This Python MySQL tutorial will
    9 min read
    How to install MySQL Connector Package in Python
    MySQL is a Relational Database Management System (RDBMS) whereas the structured Query Language (SQL) is the language used for handling the RDBMS using commands i.e Creating, Inserting, Updating and Deleting the data from the databases. A connector is employed when we have to use MySQL with other pro
    2 min read
    Connect MySQL database using MySQL-Connector Python
    While working with Python we need to work with databases, they may be of different types like MySQL, SQLite, NoSQL, etc. In this article, we will be looking forward to how to connect MySQL databases using MySQL Connector/Python.MySQL Connector module of Python is used to connect MySQL databases with
    2 min read
    How to Install MySQLdb module for Python in Linux?
    In this article, we are discussing how to connect to the MySQL database module for python in Linux. MySQLdb is an interface for connecting to a MySQL database server from Python. It implements the Python Database API v2.0 and is built on top of the MySQL C API. Installing MySQLdb module for Python o
    2 min read

    MySQL Queries

    Python MySQL - Select Query
    Python Database API ( Application Program Interface ) is the Database interface for the standard Python. This standard is adhered to by most Python Database interfaces. There are various Database servers supported by Python Database such as MySQL, GadFly, mySQL, PostgreSQL, Microsoft SQL Server 2000
    2 min read
    CRUD Operation in Python using MySQL
    In this article, we will be seeing how to perform CRUD (CREATE, READ, UPDATE and DELETE) operations in Python using MySQL. For this, we will be using the Python MySQL connector. For MySQL, we have used Visual Studio Code for python. Before beginning we need to install the MySQL connector with the co
    6 min read
    Python MySQL - Create Database
    Python Database API ( Application Program Interface ) is the Database interface for the standard Python. This standard is adhered to by most Python Database interfaces. There are various Database servers supported by Python Database such as MySQL, GadFly, mSQL, PostgreSQL, Microsoft SQL Server 2000,
    2 min read
    Python MySQL - Update Query
    A connector is employed when we have to use MySQL with other programming languages. The work of MySQL-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and the MySQL Server. Update Clause The update is used to ch
    2 min read
    Python MySQL - Insert into Table
    MySQL is a Relational Database Management System (RDBMS) whereas the structured Query Language (SQL) is the language used for handling the RDBMS using commands i.e Creating, Inserting, Updating and Deleting the data from the databases. SQL commands are case insensitive i.e CREATE and create signify
    3 min read
    Python MySQL - Insert record if not exists in table
    In this article, we will try to insert records and check if they EXISTS or not. The EXISTS condition in SQL is used to check if the result of a correlated nested query is empty (contains no tuples) or not. It can be used to INSERT, SELECT, UPDATE, or DELETE statements.  Pre-requisite Connect MySQL D
    4 min read
    Python MySQL - Delete Query
    Python Database API ( Application Program Interface ) is the Database interface for the standard Python. This standard is adhered to by most Python Database interfaces. There are various Database servers supported by Python Databases such as MySQL, GadFly, PostgreSQL, Microsoft SQL Server 2000, Info
    3 min read

    MySQL Clause

    Python MySQL - Where Clause
    Where clause is used in MySQL database to filter the data as per the condition required. You can fetch, delete or update a particular set of data in MySQL database by using where clause.Syntax  SELECT column1, column2, .... columnN FROM [TABLE NAME] WHERE [CONDITION];   The above syntax is used for
    2 min read
    Python MySQL - Order By Clause
    A connector is employed when we have to use MySQL with other programming languages. The work of MySQL-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and the MySQL Server. OrderBy Clause OrderBy is used to arra
    2 min read
    Python MySQL - Limit Clause
    A connector is employed when we have to use MySQL with other programming languages. The work of mysql-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and MySQL Server. Python-MySQL-Connector This is a MySQL Con
    2 min read
    Python MySQL - Join
    A connector is employed when we have to use mysql with other programming languages. The work of mysql-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and the MySQL Server. Python-MySQL-Connector This is a MySQL
    2 min read

    MySQL Working with Data

    MySQL | Regular Expressions (Regexp)
    In MySQL, regular expressions (REGEX) offer powerful functionality for flexible pattern matching within string data. By using the REGEXP and RLIKE operators, developers can efficiently search, validate, and manipulate string data in more dynamic ways than simple LIKE queries. In this article, we wil
    6 min read
    SQL Query to Match Any Part of String
    It is used for searching a string or a sub-string to find a certain character or group of characters from a string. We can use the LIKE Operator of SQL to search sub-strings. The LIKE operator is used with the WHERE Clause to search a pattern in a string of columns. The LIKE operator is used in conj
    3 min read
    SQL Auto Increment
    In SQL databases, a primary key is important for uniquely identifying records in a table. However, sometimes it is not practical to manually assign unique values for each record, especially when handling large datasets. To simplify this process, SQL databases offer an Auto Increment feature that aut
    6 min read
    SQL Query to Delete Duplicate Rows
    Duplicate rows in a database can cause inaccurate results, waste storage space, and slow down queries. Cleaning duplicate records from our database is an essential maintenance task for ensuring data accuracy and performance. Duplicate rows in a SQL table can lead to data inconsistencies and performa
    6 min read
    SQL Query to Convert an Integer to Year Month and Days
    With this article, we will be knowing how to convert an integer to Year, Month, Days from an integer value. The prerequisites of this article are you should be having a MSSQL server on your computer. What is a query? A query is a statement or a group of statements written to perform a specific task,
    2 min read
    Calculate the Number of Months between two specific dates in SQL
    In this article, we will discuss the overview of SQL Query to Calculate the Number of Months between two specific dates and will implement with the help of an example for better understanding. Let's discuss it step by step. Overview :Here we will see, how to calculate the number of months between th
    3 min read
    How to Compare Two Queries in SQL
    Queries in SQL :A query will either be an invitation for data results from your info or for action on the info, or each. a question will provide you with a solution to a straightforward question, perform calculations, mix data from totally different tables, add, change, or delete data from info. Cre
    2 min read
    Joining 4 Tables in SQL
    The purpose of this article is to make a simple program to Join two tables using Join and Where clause in SQL. Below is the implementation for the same using MySQL. The prerequisites of this topic are MySQL and the installment of Apache Server on your computer. Introduction :In SQL, a query is a req
    3 min read

    MySQL Working with Images

    Working with MySQL BLOB in Python
    In Python Programming, We can connect with several databases like MySQL, Oracle, SQLite, etc., using inbuilt support. We have separate modules for each database. We can use SQL Language as a mediator between the python program and database. We will write all queries in our python program and send th
    4 min read
    Retrieve Image and File stored as a BLOB from MySQL Table using Python
    Prerequisites: MySQL server should be installed In this post, we will be talking about how we can store files like images, text files, and other file formats into a MySQL table from a python script. Sometimes, just like other information, we need to store images and files into our database and provi
    3 min read
    How to read image from SQL using Python?
    In this article, we are going to discuss how to read an image or file from SQL using python. For doing the practical implementation, We will use MySQL database.  First, We need to connect our Python Program with MySQL database. For doing this task, we need to follow these below steps: Steps to Conne
    3 min read
    Boutique Management System using Python-MySQL Connectivity
    In this article, we are going to make a simple project on a boutique management system using Python MySql connectivity. Introduction This is a boutique management system made using MySQL connectivity with Python. It uses a MySQL database to store data in the form of tables and to maintain a proper r
    15+ min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences