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.8.0.tar.gz
(37.3 kB
view details)
File details
Details for the file firebirdsql-0.8.0.tar.gz
.
File metadata
- Download URL: firebirdsql-0.8.0.tar.gz
- Upload date:
- Size: 37.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
13b84944f40afbf9c95d65341d8b96b0a417b11476053f239bfd63e24d86b905
|
|
MD5 |
5629194dcd56af413dc693c0eb45e735
|
|
BLAKE2b-256 |
288a7f5cf4c91a4b4bbab344f270e42792e2248407820d0e72938e2d3d5dafb4
|