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.7.2.tar.gz
(36.3 kB
view details)
File details
Details for the file firebirdsql-0.7.2.tar.gz
.
File metadata
- Download URL: firebirdsql-0.7.2.tar.gz
- Upload date:
- Size: 36.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
23239cd08535c5b801992d4af84fc12367a6fe6b16dfca170c7c477a7d4fa315
|
|
MD5 |
a1cdc85ee97d3752c0f06f196b832f40
|
|
BLAKE2b-256 |
6e5422d9fb173e89725f696506772c46277d63113f6aa194c6f814f71c465297
|