Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit ec297dc

Browse files
committed
fix to sample
1 parent fcaf68f commit ec297dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

containers/dotnet-mssql/test-project/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void Main(string[] args)
1717
string databaseNames = "";
1818
SqlConnectionStringBuilder connectionBuilder = new SqlConnectionStringBuilder();
1919

20-
connectionBuilder.DataSource = "localhost,61433";
20+
connectionBuilder.DataSource = "localhost,1433";
2121
connectionBuilder.UserID = "sa";
2222
connectionBuilder.Password = "P@ssw0rd";
2323
using (SqlConnection containerConnection = new SqlConnection(connectionBuilder.ConnectionString)) {

0 commit comments

Comments
 (0)