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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ Because two containers that are running on the same host are on the same Docker
81
81
import pyodbc
82
82
server ='MySQLEdgeContainer'# Replace this with the actual name of your SQL Edge Docker container
83
83
username ='sa'# SQL Server username
84
-
password ='MyStrongestP@ssword'# Replace this with the actual SA password from your deployment
84
+
password ='<password>'# Replace this with the actual SA password from your deployment
85
85
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.
86
86
db_connection_string ="Driver={ODBC Driver 17 for SQL Server};Server="+ server +";Database="+ database +";UID="+ username +";PWD="+ password +";"
@@ -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 ='MyStrongestP@ssword'# 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