Skip to main content

A small utility package that makes connecting to Microsoft SQL easier

Project description

Microsoft SQL Server Easy Connect

The purpose of this small utility, one class module is to make connecting to a MS SQL Server easier. One problem I experienced through putting python code in production is: the operating system makes a difference. So if one has a error-free project running on their Windows machine and then deploy it on a unix based server, errors appear. This modul is OS independant (with one caveat, see below) so that regardless of where you the project is deployed, it will run without errors.

Quick Start

$ pip install py_ms_sql

Usage

from py_ms_sql import py_ms_sql

# Set up connection object (OPTIONAL: pass a logger object)
sql_conn = py_ms_sql.ConnectSQL()

# Use one of the following (in order of ease-of-use)
# DSN of ODBC
sql_conn.connect(dsn='mysqldsn', uid='user', pwd='password')

# OR
# ODBC Driver String
sql_conn.connect(driver_string="{SQL Server};SERVER=server_name;" \
                               "DATABASE=my_db;UID=user;PWD=password")

# OR
# ODBC Driver Details
sql_conn.connect(driver='{SQL Server}',server='server_name',
                 db='my_db',uid='user',pwd='password')

# OR
# Specify ODBC Driver Location
sql_conn.connect(host="my-server.com",port=1433,db="my_db",
                 uid='user',pwd=password,tds_version=7.3
                 driver='/usr/local/lib/libtdsodbc.so')

# Run Query (return error status and Pandas DataFrame)
status, data = sql_conn.query(sql_query)

Run any one of the above commands and if the code can find the ODBC driver, it will connect.

NOTE: The .query() method returns a Pandas DataFrame

Self Debug

In the event of errors try the following:

  1. Check, double check and check your connection details one more time.
  2. If you're connecting from something other than a Microsoft Machine, you may need to use the last option since some MS Sql Server use instance name to have a discoverable port number, and non-Microsoft machines struggle to discover port number (sometimes)
  3. If using FreeTDS on a non-Microsoft machine, make sure it is installed properly

TODO

  • allow for writing to MS SQL Server (if incomplete, only allows for read queries)
  • improve ease of portability so that no effort (what-so-ever) is needed to accomodate operating system
  • allow for non-Pandas DataFrame returns

Fine Print

Why operating systems cause errors with connecting to MS SQL Server is due to the drivers and how a machine finds the drivers. For example, Windows can connect using an ODBC manager (so can MAC OSX, but not the easiest). Therefore, to make sure your deployment doesn't run with errors, use os.name to determine which OS is running and call the correct driver/use the appropriate connection details.

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

py_ms_sql-0.1.1.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

py_ms_sql-0.1.1-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file py_ms_sql-0.1.1.tar.gz.

File metadata

  • Download URL: py_ms_sql-0.1.1.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.1

File hashes

Hashes for py_ms_sql-0.1.1.tar.gz
Algorithm Hash digest
SHA256 e51d977a47305305b1930500a919ca28a5ee2268dd7a83d7ece49ad465667e8c
MD5 5a81dfa7f2b5d05a37a2a7676d7d2780
BLAKE2b-256 d168d8a2ea1f1db0bcbf9c19e1e351f23176be0f2aabb5830e457c380f30e899

See more details on using hashes here.

File details

Details for the file py_ms_sql-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: py_ms_sql-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.1

File hashes

Hashes for py_ms_sql-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 78efaa45500a7ffee1789618b23015e6825bf61a8b46a4b37c476b5894365058
MD5 09d7fc005349dc7aaa5fb4a1a3bb6ad0
BLAKE2b-256 6cf13de7ac894be0089357896b518a3da94ba9951e1ab7d8d0e1c0fb16df2509

See more details on using hashes here.

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