Solution
Programmatically retrieve the connection string as follows:
connString =
Environment.GetEnvironmentVariable("PREFIX_myConnStringName");
Explaination
The Azure connection strings become environmental variables. Documentation explains that Azure creates the variables with the prefixes as follows:
SQL Server: SQLCONNSTR_myConnStringName
MySQL: MYSQLCONNSTR_myConnStringName
SQL Database: SQLAZURECONNSTR_myConnStringName
Custom: CUSTOMCONNSTR_myConnStringName
SQL Azure: SQLAZURECONNSTR_myConnStringName
Knowing that, we can retrieve the desired connection string with the following code:
connString =
Environment.GetEnvironmentVariable("SQLAZURECONNSTR_myConnStringName");
Other Option
As another option, this related post about how to access the connection string through web.config as follows:
<add name="myConnStringName"
connectionString="you can leave this blank"
providerName="System.Data.SqlClient" />
Note: we might not have to include the providerName attribute.
Further Research
We can view all the available environmental variables and connection strings by putting this code into a Razor view. Warning: this will reveal your password!
<ul>
@foreach (System.Collections.DictionaryEntry ev in Environment.GetEnvironmentVariables())
{
if (ev.Value.ToString().ToLower().Contains("data source"))
{
<li><strong>@ev.Key.ToString()</strong> @ev.Value.ToString()</li>
}
}
</ul>
<ul>
@foreach (System.Configuration.ConnectionStringSettings cs in System.Configuration.ConfigurationManager.ConnectionStrings)
{
<li><strong>@cs.Name</strong> @cs.ConnectionString</li>
}
</ul>
That's all for now.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…