Firebird RDBMS bindings for python.
Project description
firebirdsql package is a set of Firebird RDBMS bindings for python.
It works on Python 2.6+ (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.6+ (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.9.4.tar.gz
(47.2 kB
view details)
File details
Details for the file firebirdsql-0.9.4.tar.gz.
File metadata
- Download URL: firebirdsql-0.9.4.tar.gz
- Upload date:
- Size: 47.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
461abf539c6a66832a1b9f13e1e1b0e8cf436f60d6638db44c59292d1362b5b7
|
|
| MD5 |
a5cf303dabe9c8e935978260af4e86b3
|
|
| BLAKE2b-256 |
ad838fb80fa2778ed270da41a59905308e906b60203cdd15eae791fe31662b4a
|