Skip to content

Commit

Permalink
feat(Import-DashboardData): update connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobkellas committed Jul 20, 2022
1 parent 2733e34 commit ccab437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Deployment/Scripts/Import-DashboardData.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ else {
}

$sqlConn = New-Object System.Data.SqlClient.SqlConnection
$sqlConn.ConnectionString = Server=$sqlServerName,1433;User id=$dbUserName; Password=$dbPassword;Initial Catalog=$databaseName
$sqlConn.ConnectionString = Server=tcp:$sqlServerName,1433;User ID=$dbUserName; Password=$dbPassword;Initial Catalog=$databaseName;
$sqlConn.Open()

Write-Host "Connected to the database"
Expand Down

0 comments on commit ccab437

Please sign in to comment.