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.0.tar.gz
(31.4 kB
view details)
File details
Details for the file firebirdsql-0.6.0.tar.gz.
File metadata
- Download URL: firebirdsql-0.6.0.tar.gz
- Upload date:
- Size: 31.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c0e3105fa880ad5b60d553c08f1ac1448ce4e48771d02d3d9ee7d327f6848f0
|
|
| MD5 |
5c9b609a3578447989ccbcda811f5a2a
|
|
| BLAKE2b-256 |
833fd023455a6336d5437276b981e3c4df16d01db8a1c046710d3ecec6e4afd1
|