怎么用python連接數(shù)據(jù)庫(kù)

小億
107
2023-09-28 03:58:40

要用Python連接數(shù)據(jù)庫(kù),你需要安裝相應(yīng)的數(shù)據(jù)庫(kù)驅(qū)動(dòng)程序。下面是一些常用的數(shù)據(jù)庫(kù)連接庫(kù)和連接步驟示例:

  1. 使用MySQL數(shù)據(jù)庫(kù):
  • 安裝MySQL驅(qū)動(dòng)程序:pip install mysql-connector-python

  • 連接數(shù)據(jù)庫(kù):

import mysql.connector
# 建立連接
cnx = mysql.connector.connect(
host="localhost",
user="username",
password="password",
database="dbname"
)
# 執(zhí)行SQL查詢
cursor = cnx.cursor()
cursor.execute("SELECT * FROM table_name")
# 獲取結(jié)果
result = cursor.fetchall()
# 關(guān)閉連接
cursor.close()
cnx.close()
  1. 使用SQLite數(shù)據(jù)庫(kù):
  • 安裝SQLite驅(qū)動(dòng)程序:無(wú)需安裝,Python內(nèi)置支持SQLite數(shù)據(jù)庫(kù)。

  • 連接數(shù)據(jù)庫(kù):

import sqlite3
# 建立連接
conn = sqlite3.connect('database.db')
# 執(zhí)行SQL查詢
cursor = conn.cursor()
cursor.execute('SELECT * FROM table_name')
# 獲取結(jié)果
result = cursor.fetchall()
# 關(guān)閉連接
cursor.close()
conn.close()
  1. 使用PostgreSQL數(shù)據(jù)庫(kù):
  • 安裝PostgreSQL驅(qū)動(dòng)程序:pip install psycopg2

  • 連接數(shù)據(jù)庫(kù):

import psycopg2
# 建立連接
conn = psycopg2.connect(
host="localhost",
database="dbname",
user="username",
password="password"
)
# 執(zhí)行SQL查詢
cursor = conn.cursor()
cursor.execute("SELECT * FROM table_name")
# 獲取結(jié)果
result = cursor.fetchall()
# 關(guān)閉連接
cursor.close()
conn.close()

以上是連接數(shù)據(jù)庫(kù)的基本示例,你可以根據(jù)你使用的數(shù)據(jù)庫(kù)類型和具體需求進(jìn)行適當(dāng)?shù)男薷摹?/p>

0