温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Linux上Python版本与数据库连接

发布时间:2024-12-13 10:56:48 来源:亿速云 阅读:79 作者:小樊 栏目:编程语言

在Linux系统上,Python可以通过多种方式连接到不同的数据库。以下是一些常见数据库及其对应的Python库和连接示例:

MySQL

  • 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()

PostgreSQL

  • Python库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}")

Access

  • Python库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系统上的数据库。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI