Python retrieve data from SQL Azure

This blog article shows you how to connect Python to SQL Azure. This blog article expects the following:

  1. Install Python
    https://bit.ly/3fGCQLD
  2. Run Python using Visual Studio 2019
    https://bit.ly/36j4c7D
  3. Python retrieve data from SQL Server
    https://bit.ly/3q8a9vS

The code looks quite short. In fact, that is all you need to get back some data from SQL Azure.

In the blog article Python retrieve data from SQL Server, https://chanmingman.wordpress.com/2020/11/22/python-retrieve-data-from-sql-server/, you can connect to SQL Server on-premise. With the minor changes you can connect the Python code to SQL Azure.

The driver in the connection for the SQL Server on-premise is.

Driver={SQL Server}

You need to change the driver to.

driver= ‘{ODBC Driver 17 for SQL Server}

The complete code snippet as follow.

import pyodbc 

server = ‘server.database.windows.net;’

database = ‘database;’

username = ‘username;’

password = ‘Password;’

driver= ‘{ODBC Driver 17 for SQL Server}’

with pyodbc.connect(‘DRIVER=’+driver+‘;SERVER=’+server+‘;PORT=1433;DATABASE=’

+database+‘;UID=’+username+‘;PWD=’+ password) as conn:

    with conn.cursor() as cursor:

        cursor.execute(“SELECT TOP 20 * FROM Products”)

        row = cursor.fetchone()

        while row:

            print (str(row[0]) + ” “ + str(row[1]))

            row = cursor.fetchone()


Source Code download: https://github.com/chanmmn/PythonSQLServer/tree/master/PythonSQLAzure

Reference: https://docs.microsoft.com/en-us/azure/azure-sql/database/connect-query-python?tabs=windows/?WT.mc_id=DP-MVP-36769

https://chanmingman.wordpress.com/2020/11/17/python-resources/

Unknown's avatar

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net, Cloud, Community, Computers and Internet, Data Platform and tagged . Bookmark the permalink.

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.