How to Connect to Microsoft Azure SQL Server with Python (w/ pyodbc)

Pubblicato il: 26 febbraio 2024
sul canale di: Tech with Hitch
2,842
17

I will teach you how to connect to your Azure Microsoft SQL Server using python pyodbc. We will pip install pyodbc and then build a cnxn_str

The python code will look something like this:

import pyodbc

cnxn_str = (
'DRIVER={ODBC Driver 17 for SQL Server};'
'SERVER=your_server_name.database.windows.net;'
'DATABASE=your_database_name;'
'UID=your_username;'
'PWD=your_password'
)

conn = pyodbc.connect(cnxn_str)
cursor = conn.cursor()
cursor.execute("SELECT TOP 10 * FROM your_table")
rows = cursor.fetchall()
cursor.close()
conn.close()

#microsoftazure #azure #sqlserver #pythontutorial


In questa pagina del sito puoi guardare il video online How to Connect to Microsoft Azure SQL Server with Python (w/ pyodbc) della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Tech with Hitch 26 febbraio 2024, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 2,842 volte e gli è piaciuto 17 spettatori. Buona visione!