折腾:
期间,需要找个Python3中,比较好用合适的mysql的driver驱动,或者connector连接器。
python mysql
mac python mysql
MySQL :: MySQL Connector/Python Developer Guide
MySQL :: MySQL Connector/Python Release Notes
Python操作MySQL数据库的三种方法 – CSDN博客
“
1. MySQLdb 的使用
(1) 什么是MySQLdb?
MySQLdb 是用于 Python 连接 MySQL 数据库的接口,它实现了 Python 数据库 API 规范 V2.0,基于 MySQL C API 上建立的。
2. PyMySQL 的使用
(1) 什么是 PyMySQL?
PyMySQL 是 Python 中用于连接 MySQL 服务器的一个库,它遵循 Python 数据库 API 规范 V2.0,并包含了 pure-Python MySQL 客户端库。
3. mysql.connector 的使用
(1) 什么是 mysql.connector?
由于 MySQL 服务器以独立的进程运行,并通过网络对外服务,所以,需要支持 Python 的 MySQL 驱动来连接到 MySQL 服务器。
目前,有两个 MySQL 驱动:
mysql-connector-python:是 MySQL 官方的纯 Python 驱动;
MySQL-python :是封装了 MySQL C驱动的 Python 驱动。”
“可以把两个都装上,使用的时候再决定用哪个”
Mac系统怎么安装MySQLdb (MySQL-Python) – 简书
Mac 下Python 连接MySQL及使用 – CSDN博客
好像用:mysql-python的比较多
python 3 mysql which better
python 3 mysql connector which better
What’s the difference between MySQLdb, mysqlclient and MySQL connector/Python? – Stack Overflow
MySQL :: MySQL Connector/Python Developer Guide :: 1 Introduction to MySQL Connector/Python
MySQL :: MySQL Connector/Python Developer Guide :: 3 Connector/Python Versions
Python 3.3 Mysql Connector – Stack Overflow
看了一堆的解释
目前考虑如下,并去github上看了star
PyMySQL
mysqlclient
Oracle的官方的MySQL Connector
所以简单了:
就选用的最多的,也支持Python3的PyMySQL就好了。
转载请注明:在路上 » 【已解决】Python3中选择合适的mysql的连接器或驱动