Python中的MySQL接口:PyMySQL & MySQLdb

[亡魂溺海] 提交于 2019-12-28 11:31:42

MySQLdb模块只支持MySQL-3.23到5.5之间的版本,只支持Python-2.4到2.7之间的版本

PyMySQL支持 Python3.0以后的版本

 

PyMySQL

https://pypi.python.org/pypi/PyMySQL  

https://github.com/PyMySQL/PyMySQL/blob/master/README.rst

  • Python -- one of the following:
  • MySQL Server -- one of the following:

 

MySQLdb

https://pypi.python.org/pypi/MySQL-python/1.2.5

MySQL-python 1.2.5

Python interface to MySQL

MySQLdb is an interface to the popular MySQL database server for Python. The design goals are:

  • Compliance with Python database API version 2.0 [PEP-0249]
  • Thread-safety
  • Thread-friendliness (threads will not block each other)

MySQL-3.23 through 5.5 and Python-2.4 through 2.7 are currently supported. Python-3.0 will be supported in a future release. PyPy is supported.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!