You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-sql-edge/connect.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ You might want to connect to the instance of Azure SQL Edge from another machine
95
95
import pyodbc
96
96
server ='192.168.2.121,1600'# Replace this with the actual name or IP address of your SQL Edge Docker container
97
97
username ='sa'# SQL Server username
98
-
password ='<passwoird>'# Replace this with the actual SA password from your deployment
98
+
password ='<password>'# Replace this with the actual SA password from your deployment
99
99
database ='MyEdgeDatabase'# Replace this with the actual database name from your deployment. If you do not have a database created, you can use Master database.
100
100
db_connection_string ="Driver={ODBC Driver 17 for SQL Server};Server="+ server +";Database="+ database +";UID="+ username +";PWD="+ password +";"
0 commit comments