Firebird RDBMS bindings for python.
Project description
firebirdsql package is a set of Firebird RDBMS bindings for python.
It works on Python 2.4+ (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.4+ (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.4.3.tar.gz
(27.5 kB
view details)
File details
Details for the file firebirdsql-0.4.3.tar.gz
.
File metadata
- Download URL: firebirdsql-0.4.3.tar.gz
- Upload date:
- Size: 27.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c48bdbdf74c541447bf9004260103d1eed0b6036706c21b90b85d286ff63225d
|
|
MD5 |
2aec6a4a028292a85e00ccb89cbbfe17
|
|
BLAKE2b-256 |
e392a2695befecdadf53bb31a0b2a59eaf9170facf9d02d4e191e5d1fd7dcb7e
|