在Python中连接SQL数据库有多种方法,最常用的方法是使用第三方库来实现。以下是使用Python中最流行的两种库连接SQL数据库的方法:
pymysql
库连接MySQL数据库:import pymysql
# 连接数据库
conn = pymysql.connect(host='localhost', user='username', password='password', database='dbname')
# 创建游标对象
cursor = conn.cursor()
# 执行SQL查询
cursor.execute("SELECT * FROM table_name")
# 获取查询结果
result = cursor.fetchall()
# 关闭游标和连接
cursor.close()
conn.close()
sqlite3
库连接SQLite数据库:import sqlite3
# 连接数据库
conn = sqlite3.connect('database.db')
# 创建游标对象
cursor = conn.cursor()
# 执行SQL查询
cursor.execute("SELECT * FROM table_name")
# 获取查询结果
result = cursor.fetchall()
# 关闭游标和连接
cursor.close()
conn.close()
以上代码演示了如何连接SQL数据库并执行查询操作。您可以根据自己的需求和数据库类型选择适合的库进行连接操作。