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.6.4.tar.gz
(34.7 kB
view details)
File details
Details for the file firebirdsql-0.6.4.tar.gz
.
File metadata
- Download URL: firebirdsql-0.6.4.tar.gz
- Upload date:
- Size: 34.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2fad403bc949368620d7a1e3b0d25df25fe3f6b97948ecaee9048e5e729a1e82
|
|
MD5 |
84d48299a7d7f9df16dceec9e418e419
|
|
BLAKE2b-256 |
aa076d709298de709ef36990c7d062d63d3e78767e940a247497c2a204d5ee91
|