fdb

オンラインドキュメント

https://pypi.org/project/fdb/

https://fdb.readthedocs.io/en/latest/

インストール

pip install fdb
1

使い方

import fdb
 
co = fdb.connect(dsn='database1.fdb', user='sysdba', password='masterkey', charset='UTF8')
cur = co.cursor()
 
cur.execute("select * from view_pc")
result = cur.fetchall()
 
print(result)
1
2
3
4
5
6
7
8
9