DEV Community

Cover image for There are many options for connecting MySQL from Python, but let's use PyMySQL or mysql-connector-python for now.
MIYACHIN
MIYACHIN

Posted on • Updated on

There are many options for connecting MySQL from Python, but let's use PyMySQL or mysql-connector-python for now.

I'm trying to build an app with Flask+MySQL, but there are various packages for connecting to MySQL with Python3 and I wasn't sure which one is good and which one is bad.

I tried to use various packages and found PyMySQL or mysql-connector-python to be the simplest and easiest to use for me personally, so I'm going to write down how to use it.

Looking at StackOverflow and other sites, it appears that many responses recommend PyMySQLγ€€or mysql-connector-python.

Let's take a brief look at a brief overview of each and how to use them.

πŸ‘€ Comparison of Overviews

mysql-connector-python

  • Officially supported by Oracle
  • Pure python
  • A little slow
  • Not compatible with MySQLdb

PyMySQL

  • Pure python
  • Faster than mysql-connector
  • Almost completely compatible with MySQLdb, after calling pymysql.install_as_MySQLdb()

It is encouraging that mysql-connector-python is supported by Oracle. On the other hand, if you want speed, use PyMySQL.

βœ… How to use mysql-connector-python

installation

pip install mysql-connector-python
Enter fullscreen mode Exit fullscreen mode

Connect to the database

import mysql.connector

# Connect to server
cnx = mysql.connector.connect(
    host="127.0.0.1",
    port=3306,
    user="mike",
    password="s3cre3t!")
Enter fullscreen mode Exit fullscreen mode

Insert/Select records

from __future__ import print_function
from datetime import date, datetime, timedelta
import mysql.connector

cnx = mysql.connector.connect(user='scott', database='employees')
cursor = cnx.cursor()

tomorrow = datetime.now().date() + timedelta(days=1)

# Insert new employee
add_employee = ("INSERT INTO employees "
               "(first_name, last_name, hire_date, gender, birth_date) "
               "VALUES (%s, %s, %s, %s, %s)")

data_employee = ('Geert', 'Vanderkelen', tomorrow, 'M', date(1977, 6, 14))
cursor.execute(add_employee, data_employee)
cnx.commit()

query = ("SELECT first_name, last_name, hire_date FROM employees "
         "WHERE hire_date BETWEEN %s AND %s")

hire_start = datetime.date(1999, 1, 1)
hire_end = datetime.date(1999, 12, 31)

cursor.execute(query, (hire_start, hire_end))

for (first_name, last_name, hire_date) in cursor:
  print("{}, {} was hired on {:%d %b %Y}".format(
    last_name, first_name, hire_date))

cursor.close()
cnx.close()
Enter fullscreen mode Exit fullscreen mode

βœ… How to use PyMySQL

installation

pip install PyMySQL
Enter fullscreen mode Exit fullscreen mode

Connect to the database

import pymysql.cursors

# Connect to the database
connection = pymysql.connect(host='localhost',
                             user='user',
                             password='passwd',
                             database='db',
                             cursorclass=pymysql.cursors.DictCursor)
Enter fullscreen mode Exit fullscreen mode

Insert/Select records

with connection:
    with connection.cursor() as cursor:
        # Create a new record
        sql = "INSERT INTO `users` (`email`, `password`) VALUES (%s, %s)"
        cursor.execute(sql, ('webmaster@python.org', 'very-secret'))

    # connection is not autocommit by default. So you must commit to save
    # your changes.
    connection.commit()

    with connection.cursor() as cursor:
        # Read a single record
        sql = "SELECT `id`, `password` FROM `users` WHERE `email`=%s"
        cursor.execute(sql, ('webmaster@python.org',))
        result = cursor.fetchone()
        print(result)
Enter fullscreen mode Exit fullscreen mode

result

{'password': 'very-secret', 'id': 1}
Enter fullscreen mode Exit fullscreen mode

Summary

I personally prefer PyMySQL. Which do you prefer? Or do you know a better package?

Reference page

Advertisement

I am working on a web app called spliito.com that solves the tedious task of recording the money owed and borrowed that occurs when you go on a trip with friends in a spreadsheet and calculating who should pay back how much to whom at the end of the trip. I used PyMySQL for this app. It's pretty fast.
screen

Oldest comments (1)

Collapse
 
honiix profile image
Honiix

Hi, thanks for sharing your research.
There is also mysqlclient to consider. It's a wrapper around the C connector for MySQL.
But don't change in the middle of your developpement, they don't act all the same :(