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.2.tar.gz
(47.1 kB
view details)
File details
Details for the file firebirdsql-0.9.2.tar.gz
.
File metadata
- Download URL: firebirdsql-0.9.2.tar.gz
- Upload date:
- Size: 47.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5a9e0cbf3f9f8230142c6f3e2e52c5a5929c82bac631a741a7eaf36ebd15104 |
|
MD5 | 0c268b1683b27636e2dcffca27a9c92b |
|
BLAKE2b-256 | a6771385a93efda3fec432378a88c0b67979563d267c1a90b2bde78d86c91ed8 |