firebirdsql package is a set of Firebird RDBMS bindings for python.
It works on Python 2.5+ (include Python 3.x).
import firebirdsql
conn = firebirdsql.connect(dsn='localhost/3050:/foo/bar.fdb', user='alice', password='secret')
cur = conn.cursor()
cur.execute("select * from baz")
for c in cur.fetchall():
print(c)
conn.close()
It works on Python 2.5+ (include Python 3.x).
import firebirdsql
conn = firebirdsql.connect(dsn='localhost/3050:/foo/bar.fdb', user='alice', password='secret')
cur = conn.cursor()
cur.execute("select * from baz")
for c in cur.fetchall():
print(c)
conn.close()
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
firebirdsql-0.6.5.tar.gz
(34.7 kB
view details)
File details
Details for the file firebirdsql-0.6.5.tar.gz.
File metadata
- Download URL: firebirdsql-0.6.5.tar.gz
- Upload date:
- Size: 34.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80860cbd20ca4434f116aa48c817f4ae2941cea3db312c99d2436c58f2c2c72a
|
|
| MD5 |
523885214e94d25ab33074287ecf5ac0
|
|
| BLAKE2b-256 |
e6d68afb09cf8d879852ec7b80dacc6444d678203a9166f2f8898bea9604a662
|