pydbc driver for Microsoft SQL Server — wraps pymssql
Project description
alt-python-pydbc-mssql
pydbc driver for Microsoft SQL Server via pymssql.
Installation
uv add alt-python-pydbc-mssql
URL format
pydbc:mssql://user:password@host:port/database
The port defaults to 1433 if omitted.
Usage
import pydbc_mssql # registers MssqlDriver with DriverManager
from pydbc_core import DriverManager
conn = DriverManager.get_connection("pydbc:mssql://user:pw@localhost:1433/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
pymssql 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_mssql-1.1.0.tar.gz.
File metadata
- Download URL: alt_python_pydbc_mssql-1.1.0.tar.gz
- Upload date:
- Size: 6.2 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 |
407930824affc6160c3d9d4c0afabef7d81e425e67342672700facfca35e41fd
|
|
| MD5 |
77baef37236a5c9bd9a791751737baa5
|
|
| BLAKE2b-256 |
a7b9fbb2602055f3491615fb9005f0123d0e7b71024cd145d5e914fe4fd0ea9c
|
File details
Details for the file alt_python_pydbc_mssql-1.1.0-py3-none-any.whl.
File metadata
- Download URL: alt_python_pydbc_mssql-1.1.0-py3-none-any.whl
- Upload date:
- Size: 4.1 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 |
2ee59064a0c4eed1313bb5e728be4987deeb20c1fe94a49c244e9eac144f75b7
|
|
| MD5 |
78039e177102c14d453ffdd398f1a427
|
|
| BLAKE2b-256 |
c3a74fab7dbcd458a3d7cb1ae2641f2978db4685ca5b41d26872b7bda4c28c86
|