Created
August 30, 2021 14:57
-
-
Save csharpforevermore/7011d6011121ca257b4215ed9558acd2 to your computer and use it in GitHub Desktop.
How to test your connection string using Powershell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$conn = New-Object System.Data.SqlClient.SqlConnection | |
$conn.ConnectionString = "Server=(local);Database=Sample;Integrated Security=True;" | |
$conn.Open() | |
$conn.Close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment