Skip to main content

database_wrapper for MSSQL database

Project description

database_wrapper_mssql

Part of the database_wrapper package.

This python package is a database wrapper for MSSQL database.

Installation

pip install database_wrapper[mssql]

Usage

from database_wrapper_mssql import MSSQL, DBWrapperMSSQL

db = MSSQL({
    "hostname": "localhost",
    "port": "1433",
    "username": "sa",
    "password": "your_password",
    "database": "master"
})
db.open()
dbWrapper = DBWrapperMSSQL(db=db)

# Simple query
aModel = MyModel()
res = await dbWrapper.getByKey(
    aModel,
    "id",
    3005,
)
if res:
    print(f"getByKey: {res.toDict()}")
else:
    print("No results")

# Raw query
res = await dbWrapper.getAll(
    aModel,
    customQuery="""
        SELECT t1.*, t2.name AS other_name
        FROM my_table AS t1
        LEFT JOIN other_table AS t2 ON t1.other_id = t2.id
    """
)
async for record in res:
    print(f"getAll: {record.toDict()}")
else:
    print("No results")

db.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

database_wrapper_mssql-0.1.37.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

database_wrapper_mssql-0.1.37-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file database_wrapper_mssql-0.1.37.tar.gz.

File metadata

File hashes

Hashes for database_wrapper_mssql-0.1.37.tar.gz
Algorithm Hash digest
SHA256 98d70f7ab0ff502e26612f3c905e73599a3570a5d43aeff7509a3b52e1dc0d32
MD5 1344c893b3c2fff6e37f8e8155c133f5
BLAKE2b-256 a91c131b7b01057da62ddfbadbb676fcf191ee84069ae701365f98c15dce4e62

See more details on using hashes here.

Provenance

The following attestation bundles were made for database_wrapper_mssql-0.1.37.tar.gz:

Publisher: master.yml on gintsmurans/py_database_wrapper

Attestations:

File details

Details for the file database_wrapper_mssql-0.1.37-py3-none-any.whl.

File metadata

File hashes

Hashes for database_wrapper_mssql-0.1.37-py3-none-any.whl
Algorithm Hash digest
SHA256 ce3877b97abf36ccae4e3e3933eccd97b5e79ed189c1d660787a9afc29e8230c
MD5 a34965f4c9c1d900246751f4e5ab1109
BLAKE2b-256 170c156a131ae22c14ce3f3c7db46cbe30a73c12ab2e04c59c194c04930ffaaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for database_wrapper_mssql-0.1.37-py3-none-any.whl:

Publisher: master.yml on gintsmurans/py_database_wrapper

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page