Skip to content

Commit 70f7c9c

Browse files
Fix typo.
1 parent 477a951 commit 70f7c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-sql-edge/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ You might want to connect to the instance of Azure SQL Edge from another machine
9595
import pyodbc
9696
server = '192.168.2.121,1600' # Replace this with the actual name or IP address of your SQL Edge Docker container
9797
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
9999
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.
100100
db_connection_string = "Driver={ODBC Driver 17 for SQL Server};Server=" + server + ";Database=" + database + ";UID=" + username + ";PWD=" + password + ";"
101101
conn = pyodbc.connect(db_connection_string, autocommit=True)

0 commit comments

Comments
 (0)