python 连接数据库
Posted 菜菜_包包
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 连接数据库相关的知识,希望对你有一定的参考价值。
import MySQLdb
import MySQLdb.cursors
#sql语句
sql = "select * from table"
#连接数据库
db = MySQLdb.connect(host="localhost",
user="root",
passwd="root1234",
charset="utf8",
port=3306,
cursorclass=MySQLdb.cursors.DictCursor)
#创建游标
a = db.cursor()
#执行sql
rows = a.execute(sql)
#获取所有查询结果
request = a.fetchall()
print rows
print request
#关闭链接
db.close()
以上是关于python 连接数据库的主要内容,如果未能解决你的问题,请参考以下文章