Python连接MySQL数据库的方法有多种,常见的包括MySQLdb、PyMySQL和mysql-connector-python。
使用示例:
import MySQLdb
# 连接数据库
conn = MySQLdb.connect(host='localhost', user='username', passwd='password', db='database_name')
# 创建游标对象
cursor = conn.cursor()
# 执行SQL查询
cursor.execute('SELECT * FROM table_name')
# 获取查询结果
result = cursor.fetchall()
# 关闭游标和连接
cursor.close()
conn.close()
使用示例:
import pymysql
# 连接数据库
conn = pymysql.connect(host='localhost', user='username', password='password', db='database_name')
# 创建游标对象
cursor = conn.cursor()
# 执行SQL查询
cursor.execute('SELECT * FROM table_name')
# 获取查询结果
result = cursor.fetchall()
# 关闭游标和连接
cursor.close()
conn.close()
使用示例:
import mysql.connector
# 连接数据库
conn = mysql.connector.connect(host='localhost', user='username', password='password', database='database_name')
# 创建游标对象
cursor = conn.cursor()
# 执行SQL查询
cursor.execute('SELECT * FROM table_name')
# 获取查询结果
result = cursor.fetchall()
# 关闭游标和连接
cursor.close()
conn.close()
以上是Python连接MySQL数据库的三种常见方法。具体选择哪种方法取决于你使用的Python版本和个人偏好。
领取专属 10元无门槛券
手把手带您无忧上云