亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

怎么用python連接數據庫

小億
104
2023-09-28 03:58:40
欄目: 編程語言

要用Python連接數據庫,你需要安裝相應的數據庫驅動程序。下面是一些常用的數據庫連接庫和連接步驟示例:

  1. 使用MySQL數據庫:
  • 安裝MySQL驅動程序:pip install mysql-connector-python

  • 連接數據庫:

import mysql.connector
# 建立連接
cnx = mysql.connector.connect(
host="localhost",
user="username",
password="password",
database="dbname"
)
# 執行SQL查詢
cursor = cnx.cursor()
cursor.execute("SELECT * FROM table_name")
# 獲取結果
result = cursor.fetchall()
# 關閉連接
cursor.close()
cnx.close()
  1. 使用SQLite數據庫:
  • 安裝SQLite驅動程序:無需安裝,Python內置支持SQLite數據庫。

  • 連接數據庫:

import sqlite3
# 建立連接
conn = sqlite3.connect('database.db')
# 執行SQL查詢
cursor = conn.cursor()
cursor.execute('SELECT * FROM table_name')
# 獲取結果
result = cursor.fetchall()
# 關閉連接
cursor.close()
conn.close()
  1. 使用PostgreSQL數據庫:
  • 安裝PostgreSQL驅動程序:pip install psycopg2

  • 連接數據庫:

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

以上是連接數據庫的基本示例,你可以根據你使用的數據庫類型和具體需求進行適當的修改。

0
玛沁县| 连云港市| 房山区| 自贡市| 革吉县| 桃江县| 清镇市| 吉安县| 嫩江县| 化州市| 阿坝| 涞源县| 贵南县| 通城县| 灯塔市| 南雄市| 固原市| 锦州市| 兴宁市| 永寿县| 名山县| 上高县| 霍山县| 青河县| 集贤县| 门源| 金阳县| 右玉县| 铜鼓县| 朝阳县| 寻乌县| 龙游县| 长宁区| 汽车| 佛坪县| 旬阳县| 黄山市| 东宁县| 工布江达县| 莱芜市| 连江县|