Skip to content

Instantly share code, notes, and snippets.

@erinnmclaughlin
Last active May 24, 2025 19:24
Show Gist options
  • Select an option

  • Save erinnmclaughlin/ce365494ad392dfa98826a3825c6331c to your computer and use it in GitHub Desktop.

Select an option

Save erinnmclaughlin/ce365494ad392dfa98826a3825c6331c to your computer and use it in GitHub Desktop.
Connection String Formats
{
"MsSqlLocalDb": "Data Source=(LocalDb)\\MSSQLLocalDB;Initial Catalog={YOUR_DB_NAME};Integrated Security=True;",
"SqlExpress": "Data Source=localhost,1433;Initial Catalog={YOUR_DB_NAME};User Id={YOUR_USER_ID};Password={YOUR_PASSWORD};TrustServerCertificate=True",
"Postgres": "Host=localhost:5432;Database={YOUR_DB_NAME};Username=postgres;Password=postgres"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment