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.5.0.tar.gz
(28.5 kB
view details)
File details
Details for the file firebirdsql-0.5.0.tar.gz.
File metadata
- Download URL: firebirdsql-0.5.0.tar.gz
- Upload date:
- Size: 28.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e7be692854cb355e228703c391191b2dda0b16e01f48befbb3aa3a48328a738
|
|
| MD5 |
6a7a463b33a4608b755f91c611415b83
|
|
| BLAKE2b-256 |
39e4311e7447f1ceaf677a450df1438ba1dcfab2843c63a6fcd05b3c1b613326
|