pydbc driver for PostgreSQL — wraps psycopg2 (pyformat paramstyle)
Project description
alt-python-pydbc-pg
pydbc driver for PostgreSQL via psycopg2.
Installation
uv add alt-python-pydbc-pg
Note:
psycopg2-binaryis installed automatically and works for development and CI. For production deployments, replace it withpsycopg2(compiled against the systemlibpq). See the psycopg2 installation docs for details.
URL format
pydbc:pg://user:password@host:port/dbname
The port defaults to 5432 if omitted.
Usage
import pydbc_pg # registers PgDriver with DriverManager
from pydbc_core import DriverManager
conn = DriverManager.get_connection("pydbc:pg://alice:secret@localhost:5432/mydb")
stmt = conn.create_statement()
rs = stmt.execute_query("SELECT 1 AS n")
print(rs.rows) # [(1,)]
conn.close()
Parameterised queries
# Positional parameters
stmt = conn.create_statement()
rs = stmt.execute_query("SELECT * FROM users WHERE id = ?", (42,))
# Named parameters
rs = stmt.execute_query("SELECT * FROM users WHERE id = :id", {"id": 42})
Prepared statements
ps = conn.prepare_statement("INSERT INTO users (name, email) VALUES (?, ?)")
ps.execute_update(("Alice", "alice@example.com"))
conn.commit()
Paramstyle note
psycopg2 uses pyformat (%s / %(name)s) placeholders internally. pydbc accepts
both ? (positional) and :name (named) syntax and translates automatically — you
never need to know which style the underlying driver uses.
Documentation
License
MIT
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alt_python_pydbc_pg-1.1.0.tar.gz.
File metadata
- Download URL: alt_python_pydbc_pg-1.1.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
131f95768386d22085806ad6f9083fa78a8b182c849d68e6511a8e1e83d5e51a
|
|
| MD5 |
2116b5fa10bf819b0e81aaf53c149f9e
|
|
| BLAKE2b-256 |
6d046831547812e21ccc850a7abdfb6c8bcfe124e3c5a0d4e87a267cc04be1a4
|
File details
Details for the file alt_python_pydbc_pg-1.1.0-py3-none-any.whl.
File metadata
- Download URL: alt_python_pydbc_pg-1.1.0-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60093f2bdfded64bfe5d8bd996143547325ec33b3e91e416e9b07f9f8df1cfcd
|
|
| MD5 |
4615fde2f82a411df77d60c12923d8e4
|
|
| BLAKE2b-256 |
82173455823c8af8c892115bbccfc09a05752b022e94105d4c241987c58c7969
|