欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 连接mysql数据库

程序员文章站 2024-02-10 14:04:34
...
#coding=UTF-8
import MySQLdb
# 打开数据库连接
db = MySQLdb.connect(host="localhost",port=3308,user="root",passwd="11111",db="test", charset='utf8' )

# 使用cursor()方法获取操作游标
cursor = db.cursor()

# 使用execute方法执行SQL语句
cursor.execute("SELECT VERSION()")

# 使用 fetchone() 方法获取一条数据
data = cursor.fetchone()

print "Database version : %s " % data

# 关闭数据库连接
db.close()

注意:端口 port不是字符串,是一个整型

希望对你有所帮助

相关标签: mysqldb python