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.8.5.tar.gz
(43.1 kB
view details)
File details
Details for the file firebirdsql-0.8.5.tar.gz.
File metadata
- Download URL: firebirdsql-0.8.5.tar.gz
- Upload date:
- Size: 43.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c738953b572780b3b17cfa2b0187421155d3702d725477bbac1192f54152955
|
|
| MD5 |
e28b7dcc6d9ac831d52110f8a333b589
|
|
| BLAKE2b-256 |
40a4fddef5d1bf3bbf84eb6e33e2b2180fc517096126ad7383e87e712ff10ddd
|