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.1.tar.gz
(32.0 kB
view details)
File details
Details for the file firebirdsql-0.6.1.tar.gz
.
File metadata
- Download URL: firebirdsql-0.6.1.tar.gz
- Upload date:
- Size: 32.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e633d9f1d91f16be89af04d51c9d0c4afcedc5c008fdab2eda013369895066e6
|
|
MD5 |
e06f26b704ebaa0ee73465d57869e97e
|
|
BLAKE2b-256 |
d98bd09f4e4ebbc8f0bbdd1c83ab1ba53e8a88556a1b79d229fb30ecb66c3ec2
|