Python中常用資料庫訪問介面模組

2022-02-02 06:52:31 字數 858 閱讀 1556

引用:

python 資料庫介面模組::-- swordsp [2007-01-16 13:36:01]

目錄專用資料庫連線模組

mysql

sqlite

postgresql

oracle

ibm db2

sap db

infomix

interbase

ingres

sybase

sql server

thinksql

matisse

通用資料庫介面模組

odbc

jdbc

sqlrelay

其它模組

gadfly

1.1. mysql

1.2. sqlite

1.3. postgresql

pygresql -- 歷史最悠久,最流行的 postgresql 介面

psycopg2 -- 特別為高併發環境設計的 postgresql 驅動

pypgsql -- python世界裡的另乙個 postgresql 介面

1.4. oracle

1.5. ibm db2

1.6. sap db

1.7. infomix

1.8. interbase

1.9. ingres

1.10. sybase

1.11. sql server

1.12. thinksql

1.13. matisse

2.1. odbc

2.2. jdbc

2.3. sqlrelay

3.1. gadfly

python 訪問資料庫

commit 提交 rollback 回滾 cursor用來執行命令的方法 callproc self,procname,args 用來執行儲存過程,接收的引數為儲存過程名和引數列表,返回值為受影響的行數 execute self,query,args 執行單條sql語句,接收的引數為sql語句本身...

訪問資料庫 訪問資料庫

程式執行的時候,資料都是在記憶體中的。當程式終止的時候,通常都需要將資料儲存到磁碟上,無論是儲存到本地磁碟,還是通過網路儲存到伺服器上,最終都會將資料寫入磁碟檔案。而如何定義資料的儲存格式就是乙個大問題。如果我們自己來定義儲存格式,比如儲存乙個班級所有學生的成績單 名字成績 michael99 bo...

python訪問ZODB資料庫

usr bin python2.4 myzodb.py import sys import os from zodb import filestorage from zodb import db import transaction class myzodb object def init self...