一、python操作数据库
1.数据库连接
db = MySQLdb.connect(host=‘192.168.0.180‘,user=‘cattle‘,passwd=‘cattle‘,db=‘cattle‘)
比较常用的参数包括:
host:数据库主机名.默认是用本地主机
user:数据库登陆名.默认是当前用户
passwd:数据库登陆的秘密.默认为空
db:要使用的数据库名.没有默认值
port:MySQL服务使用的TCP端口.默认是3306
charset:数据库编码
本文出自 “翟军铭python” 博客,请务必保留此出处http://pythonzhai.blog.51cto.com/10391994/1733299
原文地址:http://pythonzhai.blog.51cto.com/10391994/1733299