Skip to content

Commit

Permalink
Merge pull request #560 from SanDiegoCountySheriff/bug/1651-sql-serve…
Browse files Browse the repository at this point in the history
…r-conn-string

feat(Import-DashboardData): update connection string
  • Loading branch information
jacobkellas authored Jul 20, 2022
2 parents 2733e34 + ccab437 commit 6071c7e
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 6071c7e

Please sign in to comment.