vote up 1 vote down star
1

I've got a strange thing happening with my app.config file. My ConnectionStrings section contains this:

<connectionStrings>
  <add name="Connection" connectionString="Data Source=TheServer;
   Initial Catalog=TheDatabase;IntegratedSecurity=SSPI" 
   providerName="System.Data.SqlClient"/>
</connectionStrings>

However, when I query the section via ConfigurationManager.ConnectionStrings[0], I get back this connection string:

Data Source=.\\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true

Where is it getting this value from?

flag

5 Answers

vote up 4 vote down check

It is read from machine.config, you can either make sure to clear all connection strings before adding your own:

<connectionStrings>
  <clear/>
  <add name="Connection" connectionString="Data Source=TheServer;
   Initial Catalog=TheDatabase;IntegratedSecurity=SSPI" 
   providerName="System.Data.SqlClient"/>
</connectionStrings>

Or just never reference your connection strings by indexes, use names you give them:

ConfigurationManager.ConnectionStrings["Connection"]
link|flag
I believe this is the correct answer, beat me to it. – Chris Needham Mar 12 at 12:32
vote up 1 vote down

It's coming from another config, either a higher up app.config in the tree or the machine config. To ignore anything else use <clear /> to get rid of anything not in the current config.

<connectionStrings>
   <clear />
   <add name="Connection" connectionString="Data Source=TheServer;
     Initial Catalog=TheDatabase;IntegratedSecurity=SSPI" 
     providerName="System.Data.SqlClient"/>
</connectionStrings>
link|flag
vote up 1 vote down

It comes from machine.config. .NET Automatically merges the connection string sections (and some others I believe) of your application config (or web config) and your machine.config.

You can read about how it works in ASP.NET here.

link|flag
I see. Thank you. Why isn't it referencing the app.config file then? I haven't had this happen before. – woodstock Mar 12 at 12:28
@woodstock: it is, but you are calling it by the index, and 0 happens to be the first one defined up in the hierarchy – Pawel Krakowiak Mar 12 at 12:31
vote up 0 vote down

Addition to Nath's answer, this is better :

ConfigurationManager.ConnectionStrings["Connection"]
link|flag
vote up 0 vote down

Although the question's been answered by Jason Punyon, I'd strongly recommend accessing your connection strings via their name rather than their index. e.g.

ConfigurationManager.ConnectionStrings["Connection"]
link|flag
Oops, a bit late there... – mdresser Mar 12 at 12:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.