共计 953 个字符,预计需要花费 3 分钟才能阅读完成。
要用 Python 连接 数据库,你需要安装相应的数据库驱动程序。下面是一些常用的数据库连接库和连接步骤示例:
- 使用MySQL 数据库:
- 安装 MySQL 驱动程序:
pip install mysql-connector-python
- 连接数据库:
import mysql.connector
# 建立连接
cnx = mysql.connector.connect(
host="localhost",
user="username",
password="password",
database="dbname"
)
# 执行 SQL 查询
cursor = cnx.cursor()
cursor.execute("SELECT * FROM table_name")
# 获取结果
result = cursor.fetchall()
# 关闭连接
cursor.close()
cnx.close()
- 使用 SQLite 数据库:
- 安装 SQLite 驱动程序:无需安装,Python 内置支持 SQLite 数据库。
- 连接数据库:
import sqlite3
# 建立连接
conn = sqlite3.connect('database.db')
# 执行 SQL 查询
cursor = conn.cursor()
cursor.execute('SELECT * FROM table_name')
# 获取结果
result = cursor.fetchall()
# 关闭连接
cursor.close()
conn.close()
- 使用 PostgreSQL 数据库:
- 安装 PostgreSQL 驱动程序:
pip install psycopg2
- 连接数据库:
import psycopg2
# 建立连接
conn = psycopg2.connect(
host="localhost",
database="dbname",
user="username",
password="password"
)
# 执行 SQL 查询
cursor = conn.cursor()
cursor.execute("SELECT * FROM table_name")
# 获取结果
result = cursor.fetchall()
# 关闭连接
cursor.close()
conn.close()
以上是连接数据库的基本示例,你可以根据你使用的数据库类型和具体需求进行适当的修改。
丸趣 TV 网 – 提供最优质的资源集合!
正文完