Created
August 30, 2021 14:56
-
-
Save csharpforevermore/383c91e37d5ad030c9dae7ae1834d878 to your computer and use it in GitHub Desktop.
How to test your connection string using Powershell
This file contains hidden or 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)\SQLEXPRESS;Database=SampleDatabase;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