python

linux python如何连接数据库

小樊
84
2024-11-15 07:10:45
栏目: 编程语言

在Linux系统中使用Python连接数据库,通常需要安装相应的数据库驱动程序或库。以下是一些常见数据库的连接方法:

  1. 连接MySQL数据库:

首先,确保已经安装了mysql-connector-python库。如果没有安装,可以使用以下命令安装:

pip install mysql-connector-python

然后,使用以下代码连接到MySQL数据库:

import mysql.connector

cnx = mysql.connector.connect(
    host="数据库地址",
    user="用户名",
    password="密码",
    database="数据库名"
)

cursor = cnx.cursor()
cursor.execute("SELECT * FROM 表名")
result = cursor.fetchall()

for row in result:
    print(row)

cursor.close()
cnx.close()
  1. 连接PostgreSQL数据库:

首先,确保已经安装了psycopg2库。如果没有安装,可以使用以下命令安装:

pip install psycopg2

然后,使用以下代码连接到PostgreSQL数据库:

import psycopg2

cnx = psycopg2.connect(
    host="数据库地址",
    user="用户名",
    password="密码",
    dbname="数据库名"
)

cursor = cnx.cursor()
cursor.execute("SELECT * FROM 表名")
result = cursor.fetchall()

for row in result:
    print(row)

cursor.close()
cnx.close()
  1. 连接SQLite数据库:

首先,确保已经安装了sqlite3库。在大多数Linux发行版中,这个库是默认安装的。

然后,使用以下代码连接到SQLite数据库:

import sqlite3

cnx = sqlite3.connect("数据库文件名.db")

cursor = cnx.cursor()
cursor.execute("SELECT * FROM 表名")
result = cursor.fetchall()

for row in result:
    print(row)

cursor.close()
cnx.close()

请根据您的实际需求和数据库类型选择合适的库和方法。

0
看了该问题的人还看了