python连接数据库
时间: 2023-02-28 17:18:11 浏览: 73
Python可以使用各种数据库驱动连接数据库,常用的有:
- mysql-connector-python:连接MySQL数据库
- psycopg2:连接PostgreSQL数据库
- pyodbc:连接ODBC数据源
示例代码(使用mysql-connector-python连接MySQL数据库):
```
import mysql.connector
# 连接数据库
cnx = mysql.connector.connect(user='username', password='password', host='host', database='database')
# 创建游标
cursor = cnx.cursor()
# 执行查询
cursor.execute("SELECT * FROM table")
# 获取结果
result = cursor.fetchall()
# 关闭游标
cursor.close()
# 关闭连接
cnx.close()
```
注意: 上面的示例代码并没有考虑异常处理。在实际使用中应该添加相应的try-except语句。
阅读全文