Query MSSQL DB from CentOS and Windows using Python's pyodbc Library

in #utopian-io7 years ago (edited)

python-sqlserver.jpg

This tutorial explains how we can connect to a Microsoft SQL Server database from Python running under Linux or Windows using pyodbc library.

Pyodbc is an open source Python module that makes accessing ODBC databases simple. It implements the DB API 2.0 specification. Using it, we can easily connect Python applications to data sources with an ODBC driver.

What this tutorial covers ?

  • Introduction to ODBC Driver for CentOS and Windows
  • Install Python's pyodbc module
  • Install ODBC Driver on CentOS.
  • Python code to connect to MSSQL DB from CentOS with Data Source Name
  • Python code to connect to MSSQL DB from CentOS without Data Source Name
  • Install ODBC Driver on Windows.
  • Python code to connect to MSSQL DB from Windows.

Requirements

  • Microsoft SQL Server
  • CentOS or RedHat Linux system
  • Windows system

Difficulty

The implementation explained here is straightforward.

  • Basic

SQL Instance

In this tutorial, we'll use Steem SQL instance. Details are mentioned below :

  • Server: sql.steemsql.com
  • User: steemit
  • Password: steemit
  • Database: DBSteem
  • Port: 1433

SQL Server Setup

  • The SQL server installation must be setup to allow external connections.
  • Note the credentials to connect the SQL server.
  • Note the port to which SQL server is listening.
  • Make sure connection is not blocked by firewall. To check this, attempt a telnet from the host system and check if the connection fails.

Python Library to connect to MSSQL DB

  • pyodbc : It is a Python module that allows to connect to almost any database using ODBC driver.

Installation of pyodbc

The easiest method to install pyodbc is by using pip. Use below command to install pyodbc library.

pip install pyodbc

pyodbc_install.gif

Installation under CentOS or RedHat

Required packages under CentOS

  • FreeTDS : It is the driver thats allows applications to talk to the MSSQL DB.
  • UnixODBC : It is the driver manager.

Installation Steps

rpm -Uvh http://mirror.vbctv.in/epel//7/x86_64/e/epel-release-7-9.noarch.rpm

  • Install the required packages using yum.

yum install -y unixODBC unixODBC-devel freetds

installing_dependencies.gif

We can connect to SQL server with or without Data Source Name (DSN). Both the methods are mentioned below.

Method 1 : Configure using Data Source Name (DSN)

Configure MSSQL Server in FreeTDS's setting :
  • Edit /etc/freetds.conf file and add below SQL server details appropriately. Note that we have named the SQL server steemsqlserver.

[steemsqlserver]
host = sql.steemsql.com
port = 1433
tds version = 7.0

tds_file_setup.gif

  • Test if the newly added connection works with below command.

tsql -S steemsqlserver -U steemit -P steemit

  • Run some SQL command to make sure that everything is working fine. (For this example, we are running a SQL query to fetch all Steem accounts that start with rohan).
    select name from DBSteem.dbo.Accounts where name like 'rohan%'
    go

tds_script.gif

If everything works fine, it will print the result of the query.

Setup unixODBC to use FreeTSD

  • Run odbcinst -j to know where the configuration files are located. We need file location for drivers and system data source. In CentOS they are /etc/odbcinst.ini and /etc/odbc.ini respectively. However, the output of the command will give the file location.

odbcinst_j.PNG

odbc_j.gif!

  • Edit the /etc/odbcinst.ini as below.

odbcinst.PNG

odbcinst.gif

If the Driver and Setup does not work then search the libtds files using find command.

  • Edit the /etc/odbc.ini as below.

odbc_ini.PNG

odbc_ini.gif

Connect from Python Application

  • Use below command to connect to SQL DB using pyodbc

pyodbc.connect('DSN='steemsqlserverdatasource'; UID='steemit'; PWD=''steemit; DATABASE='DBSteem';'

Example : Below code connects to the Steem SQL server and list all accounts which starts with 'rohan'.

linux_code_DSN.PNG

Code Output

code_for_linux_dsn.gif

Method 2 : Configure without Data Source Name.

In this case, we specify the driver, SQL server name and ports and TDS Version in the pyodbc connection string.

pyodbc.connect('Driver='FreeTDS'; Server='sql.steemsql.com'; UID='steemit'; PWD='steemit'; Database='DBSteem'; TDS_Version='7.0'; Port='1433';')

  • The below code shows implementation of example, mention in Method 1, without Data Source Name.

linux_code_without_DSN.PNG

Code Output

linux_code_with_server.gif

Installation under Windows

  • Download the ODBC Drive for Windows from below link. The latest ODBC driver for SQL Server available at the time of writing this tutorial is ODBC Driver 13.

https://www.microsoft.com/en-us/download/details.aspx?id=53339

  • Install the downloaded driver.

odbc_for_windows.gif

  • Once the driver is installed, we can now connect to the SQL server from python application using pyodbc. The connection string for pyodbc is mentioned below.

pyodbc.connect('Driver={ODBC Driver 13 for SQL Server}; Server=sql.steemsql.com; UID=steemit; PWD=steemit; Database=DBSteem;')

  • Below code shows implementation of same example mentioned in Method 1.

windows_code.PNG

  • Code Output

windows_code_run.gif

We saw how easily we can connect to Microsoft SQL server from CentOS or Windows using Python's pyodbc library.

If you have any questions or comments , I'd would love to hear from you in comment section.



Posted on Utopian.io - Rewarding Open Source Contributors

Sort:  

Thank you for the contribution. It has been approved.

You can contact us on Discord.
[utopian-moderator]

Thankyou.

The @OriginalWorks bot has determined this post by @rohancmr to be original material and upvoted it!

ezgif.com-resize.gif

To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!

Please note that this is a BETA version. Feel free to leave a reply if you feel this is an error to help improve accuracy.

Hey @rohancmr I am @utopian-io. I have just upvoted you!

Achievements

  • You have less than 500 followers. Just gave you a gift to help you succeed!
  • Seems like you contribute quite often. AMAZING!

Suggestions

  • Contribute more often to get higher and higher rewards. I wish to see you often!
  • Work on your followers to increase the votes/rewards. I follow what humans do and my vote is mainly based on that. Good luck!

Get Noticed!

  • Did you know project owners can manually vote with their own voting power or by voting power delegated to their projects? Ask the project owner to review your contributions!

Community-Driven Witness!

I am the first and only Steem Community-Driven Witness. Participate on Discord. Lets GROW TOGETHER!

mooncryption-utopian-witness-gif

Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x