您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Linux系统上,Python可以通过多种方式连接到不同的数据库。以下是一些常见数据库及其对应的Python库和连接示例:
PyMySQL
pip install PyMySQL
import pymysql
# 创建数据库连接
db = pymysql.connect(host='localhost', user='root', password='123456', database='school', port=3306, charset='utf8')
# 使用cursor()方法创建一个游标对象
cursor = db.cursor()
# 撰写SQL语句
sql = "select * from student"
# 执行SQL语句
cursor.execute(sql)
# 获取数据
results = cursor.fetchall()
# 打印结果
for row in results:
print(row)
# 关闭数据库连接
db.close()
psycopg2
pip install psycopg2
import psycopg2
try:
conn = psycopg2.connect(dbname="test_db", user="postgres", password="123456", host="localhost", port="5432")
print("连上了!")
except Exception as e:
print(f"哎呀,出事了:{e}")
pyodbc
pip install pyodbc
import pyodbc
conn_str = 'DSN=AccessDatabase;UID=;PWD='
conn = pyodbc.connect(conn_str)
cursor = conn.cursor()
cursor.execute('SELECT * FROM your_table')
for row in cursor.fetchall():
print(row)
cursor.close()
conn.close()
通过上述信息,您可以根据自己的需求选择合适的Python库来连接和管理Linux系统上的数据库。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。