Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The differences between MySQLdb and mysqlconnector

Tags:

python

mysql

there are two methods to connect mysql using python,

1

import mysql.connector
    cnx = mysql.connector.connect(user='scott', password='tiger',host='127.0.0.1',database='employees')
    cnx.close()

2

import MySQLdb

db = MySQLdb.connect(host="localhost", # your host, usually localhost
                     user="john", # your username
                      passwd="megajonhy", # your password
                      db="jonhydb") # name of the data base

cur = db.cursor() 

cur.execute("SELECT * FROM YOUR_TABLE_NAME")

I do not know the differences between MySQLdb and mysql connector,when should I use MySQLdb and when should I use mysql connector? Please tell me ,thanks very much.

like image 487
Yongqi Z Avatar asked Sep 15 '15 00:09

Yongqi Z


People also ask

What is the difference between PyMySQL and MySQL connector?

PyMySQL is a pure-Python MySQL client library, based on PEP 249. Most public APIs are compatible with mysqlclient and MySQLdb. PyMySQL works with MySQL 5.5+ and MariaDB 5.5+. MySQL is a leading open source database management system.

What is MySQLdb module?

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.

What is MySQLdb Python?

MySQLdb is a third-party driver that provides MySQL support for Python, compliant with the Python DB API version 2.0.


1 Answers

MySQLdb is a C module that links against the MySQL protocol implementation in the libmysqlclient library. It is faster, but requires the library in order to work.

mysql-connector is a Python module that reimplements the MySQL protocol in Python. It is slower, but does not require the C library and so is more portable.

like image 149
Ignacio Vazquez-Abrams Avatar answered Oct 20 '22 04:10

Ignacio Vazquez-Abrams