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.3.tar.gz
(34.0 kB
view details)
File details
Details for the file firebirdsql-0.6.3.tar.gz.
File metadata
- Download URL: firebirdsql-0.6.3.tar.gz
- Upload date:
- Size: 34.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9cc431572ac2953c27c9ead1910cb6553551325f7882ac5e6f50f9584253805
|
|
| MD5 |
b4c5d03371529d74b71bb917009d8598
|
|
| BLAKE2b-256 |
96bd70b1a523a1491d2d6abc6090e76db9429925b073ba2593d14d15dc12d5e6
|