Firebird RDBMS bindings for python.
Project description
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()
Project details
Release history Release notifications | RSS feed
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.7.0.tar.gz
(36.2 kB
view details)
File details
Details for the file firebirdsql-0.7.0.tar.gz.
File metadata
- Download URL: firebirdsql-0.7.0.tar.gz
- Upload date:
- Size: 36.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
427cca94f32f195559eb78ae64595efb9dd42671ab99de689f316dfa8d84f193
|
|
| MD5 |
f59809ffc49805306f48d7acc3ab2498
|
|
| BLAKE2b-256 |
bd5cb9ad482f5e0238f43193944c56e818c0d0adfd0756375e42ea11b58bc1c6
|