阅读量:163
在Ubuntu上使用Python连接数据库,通常需要使用相应的数据库驱动程序。以下是一些常见数据库的连接方法:
1. 连接MySQL数据库
安装MySQL客户端库:
sudo apt-get update
sudo apt-get install python3-mysqldb
Python代码示例:
import mysql.connector
# 连接数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 创建游标对象
mycursor = mydb.cursor()
# 执行SQL查询
mycursor.execute("SELECT * FROM yourtable")
# 获取查询结果
myresult = mycursor.fetchall()
for x in myresult:
print(x)
# 关闭连接
mydb.close()
2. 连接PostgreSQL数据库
安装PostgreSQL客户端库:
sudo apt-get update
sudo apt-get install python3-psycopg2
Python代码示例:
import psycopg2
# 连接数据库
conn = psycopg2.connect(
dbname="yourdatabase",
user="yourusername",
password="yourpassword",
host="localhost"
)
# 创建游标对象
cur = conn.cursor()
# 执行SQL查询
cur.execute("SELECT * FROM yourtable")
# 获取查询结果
rows = cur.fetchall()
for row in rows:
print(row)
# 关闭游标和连接
cur.close()
conn.close()
3. 连接SQLite数据库
Python代码示例:
import sqlite3
# 连接数据库
conn = sqlite3.connect('yourdatabase.db')
# 创建游标对象
cursor = conn.cursor()
# 执行SQL查询
cursor.execute("SELECT * FROM yourtable")
# 获取查询结果
rows = cursor.fetchall()
for row in rows:
print(row)
# 关闭游标和连接
cursor.close()
conn.close()
4. 连接MongoDB数据库
安装MongoDB客户端库:
sudo apt-get update
sudo apt-get install python3-pymongo
Python代码示例:
from pymongo import MongoClient
# 连接MongoDB
client = MongoClient('mongodb://localhost:27017/')
# 选择数据库
db = client['yourdatabase']
# 选择集合
collection = db['yourcollection']
# 查询文档
documents = collection.find()
for doc in documents:
print(doc)
# 关闭连接
client.close()
注意事项安全性:不要在代码中硬编码数据库凭据,可以使用环境变量或配置文件来存储敏感信息。异常处理:在实际应用中,应该添加异常处理来捕获和处理可能的错误。资源管理:确保在操作完成后关闭数据库连接和游标,以释放资源。
通过以上步骤,你可以在Ubuntu上使用Python连接到不同的数据库并进行操作。