首先对于数据库的基本操作要有一定基础,其次了解Python的基础语法。
建议先阅读MysqL中文教程http://doc.mysql.cn/mysql5/refman-5.1-zh.html-chapter/和Python基础教程。
一、python连接Mysql
连接MySQL的方法有多种,如MySQLdb http://sourceforge.net/projects/mysql-python/
但是该项目并不支持python3。
现在Mysql官方已经提供了python的连接接口Connector/Python,有安装方法和文档。
Connector/Python安装地址:http://dev.mysql.com/downloads/connector/python/
Connector/Python文档地址:http://dev.mysql.com/doc/connector-python/en/index.html
安装完成后,测试是否成功:
调出dos命令窗口,打开python程序,输入以下程序测试:
注意:user和password需要修改成自己电脑MySQL的用户名和密码
import mysql.connector
cnx = mysql.connector.connect(user='scott', password='tiger',
host='127.0.0.1',)
cnx.close()