up vote 0 down vote favorite
share [g+] share [fb]

I know I just missing something simple, but when I try pulling the connection string from the ConfigurationManager, I always get null.

I have System.configuration added as a reference

In the source file I have

using System.Configuration;
using MySql.Data;
using MySql.Data.MySqlClient;
....
_connStr = ConfigurationManager.ConnectionStrings["MySqlDataConnection"].ConnectionString;
objConnection = new MySqlConnection(_connStr);

where in my app config I have...

<configuration>
  <connectionStrings>
    <add name="MySqlDataConnection"
       connectionString="server=127.0.0.1;database=HLSDB;uid=me;password=myPasswd;pooling=false;"
       providerName="MySql.Data.SqlClient"/>
  </connectionStrings>
</configuration>
link|improve this question

1  
I hate to say something that may seem lame but have you made sure that the correct config file is loaded? Because I do not see a single thing that is off in here. I looked at a system I am using similar and the only difference I have is I don't define the providerName in the node. – spinon Jul 23 '10 at 19:46
feedback

2 Answers

up vote 0 down vote accepted

Maybe you could try

AppDomain.CurrentDomain.SetupInformation.ConfigurationFile

To verify you are looking at the correct config file.

link|improve this answer
feedback

Please double-check that your configuration file is deployed as MyApplication.exe.config (and not app.config) in the output directory. That code you have posted is fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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