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.2.tar.gz
(37.5 kB
view details)
File details
Details for the file firebirdsql-0.8.2.tar.gz.
File metadata
- Download URL: firebirdsql-0.8.2.tar.gz
- Upload date:
- Size: 37.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3245c8a8446acdf79e99251e71e8fd04f6b0f6debdb11e21ae8ca9e08b6b8ef
|
|
| MD5 |
65bd6ea5235341b09b275f150a046279
|
|
| BLAKE2b-256 |
7300f81625687d2679fe87bc13ccc8e31d9211785d01fe6c255a52778ee8a3c0
|