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.4.tar.gz
(44.7 kB
view details)
File details
Details for the file firebirdsql-0.8.4.tar.gz.
File metadata
- Download URL: firebirdsql-0.8.4.tar.gz
- Upload date:
- Size: 44.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
553f2e8900d8295a71ea70abf8a7e091621bbedaa23b57df692eecf13c43240e
|
|
| MD5 |
20366d8a6c350e4c891dd31841870ef9
|
|
| BLAKE2b-256 |
1c2df6a1fb46cd27a98414454d787b655b9b576bfe57692b87159e59f150d04d
|