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.1.tar.gz
(37.3 kB
view details)
File details
Details for the file firebirdsql-0.8.1.tar.gz
.
File metadata
- Download URL: firebirdsql-0.8.1.tar.gz
- Upload date:
- Size: 37.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
33b35b65ee111d674e77722cf69b7f5d6b3d187f7bb00fd6ea82a16df716c737
|
|
MD5 |
7327f29cf34ba8f5606134c4cc22ec8f
|
|
BLAKE2b-256 |
6de0506fed87d4fa887abe56650a3b0bc4ce6ffcb5aa411fb7cf55f3c20f47f6
|