Firebird RDBMS bindings for python.
Project description
firebirdsql package is a set of Firebird RDBMS bindings for python.
It works on Python 2.4+ (include Python 3.x).
import firebirdsql
conn = firebirdsql.connect(dsn='localhost/3050:/foo/bar.fdb',
user='nakagami', password='secret')
cur = conn.cursor()
cur.execute("select * from baz")
for c in cur.fetchall():
print(c)
conn.close()
It works on Python 2.4+ (include Python 3.x).
import firebirdsql
conn = firebirdsql.connect(dsn='localhost/3050:/foo/bar.fdb',
user='nakagami', 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.4.2.tar.gz
(28.8 kB
view details)
File details
Details for the file firebirdsql-0.4.2.tar.gz.
File metadata
- Download URL: firebirdsql-0.4.2.tar.gz
- Upload date:
- Size: 28.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec21619f15ce43c7e5c1eff064b0b4719fc3ee9c06a212a579f3d2e312dcccfc
|
|
| MD5 |
c0e43fc492922809b833670848223712
|
|
| BLAKE2b-256 |
b3d4fc9d0017b562151f5a52786524962514eb66d36b6c2cbb147d4e6a36607c
|