python-Mysql的操作(pyMysql的介绍)

python中的mysqldb能对mysql进行操作,性能也比pyMysql优化,但是对于python3.x不太兼容。PyMySQL 是在 Python3.x 版本中用于连接 MySQL 服务器的一个库,遵循 Python 数据库 API v2.0 规范。所以在python 3上建议使用这个模块

安装pymysql的模块:

pip install PyMySQL

如果不愿意安装,下载下来,解压文件,将pymysql文件夹放到你的工程中即可

https://www.python.org/dev/peps/pep-0249/
http://pymysql.readthedocs.io/en/latest/modules/connections.html
http://pymysql.readthedocs.io/en/latest/modules/cursors.html
PyMySQL模块中常用的2个对象Connection Object和Cursor Objects

Connection Object