How to fix "The ConnectionString property has not been initialized" - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T12:18:57Zhttp://stackoverflow.com/feeds/question/1007786http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1007786/how-to-fix-the-connectionstring-property-has-not-been-initialized1How to fix "The ConnectionString property has not been initialized"marcgg2009-06-17T15:30:34Z2009-06-17T16:07:59Z
<p>When I start my application I get: <strong><em>The ConnectionString property has not been initialized.</em></strong> </p>
<p>Web.config:</p>
<pre><code><connectionStrings>
<add name="MyDB"
connectionString="Data Source=localhost\sqlexpress;Initial Catalog=mydatabase;User Id=myuser;Password=mypassword;" />
</connectionStrings>
</code></pre>
<p>The stack being:</p>
<pre><code>System.Data.SqlClient.SqlConnection.PermissionDemand() +4876643
System.Data.SqlClient.SqlConnectionFactory.PermissionDemand(DbConnection outerConnection) +20
System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) +117
System.Data.SqlClient.SqlConnection.Open() +122
</code></pre>
<p>I'm fairly new to .NET and I don't get this one. I found a lot of answers on Google, but none really fixed my issue.</p>
<p>What does that mean? Is my web.config bad? Is my function bad? Is my SQL configuration not working correctly (I'm using sqlexpress)?</p>
<p>My main problem here is that I'm not sure where to start to debug this... anything would help.</p>
<p>EDIT: </p>
<p>Failling code:</p>
<pre><code>MySQLHelper.ExecuteNonQuery(
ConfigurationManager.AppSettings["ConnectionString"],
CommandType.Text,
sqlQuery,
sqlParams);
</code></pre>
<p>sqlQuery is a query like "select * from table". sqlParams is not relevant here.</p>
<p>The other problem here is that my company uses MySQLHelper, and I have no visibility over it (only have a dll for a helper lib). It has been working fine in other projects, so I'm 99% that the error doesn't come from here. </p>
<p>I guess if there's no way of debuging it without seeing the code I'll have to wait to get in touch with the person who created this helper in order to get the code.</p>
http://stackoverflow.com/questions/1007786/how-to-fix-the-connectionstring-property-has-not-been-initialized/1007835#10078354Answer by Matthew Jones for How to fix "The ConnectionString property has not been initialized"Matthew Jones2009-06-17T15:36:22Z2009-06-17T15:47:15Z<p>You get this error when a datasource attempts to bind to data but cannot because it cannot find the connection string. In my experience, this is not usually due to an error in the web.config (though I am not 100% sure of this).</p>
<p>If you are programmatically assigning a datasource (such as a SqlDataSource) or creating a query (i.e. using a SqlConnection/SqlCommand combination), make sure you assigned it a ConnectionString.</p>
<pre><code>SqlConnection myCon = new SqlConnection(ConfigurationManager.ConnectionStrings[nameOfString].ConnectionString;
</code></pre>
<p>If you are hooking up a databound element to a datasource (i.e. a GridView or ComboBox to a SqlDataSource), make sure the datasource is assigned to one of your connection strings.</p>
<p>Post your code (for the databound element and the web.config to be safe) and we can take a look at it.</p>
<p><strong>EDIT:</strong> I think the problem is that you are trying to get the Connection String from the AppSettings area, and programmatically that is not where it exists. Try replacing that with <code>ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString</code> (if ConnectionString is the name of your connection string.)</p>
http://stackoverflow.com/questions/1007786/how-to-fix-the-connectionstring-property-has-not-been-initialized/1007934#10079346Answer by kscott for How to fix "The ConnectionString property has not been initialized"kscott2009-06-17T15:48:43Z2009-06-17T16:07:59Z<p>Referencing the connection string should be done as such:</p>
<pre><code>MySQLHelper.ExecuteNonQuery(
ConfigurationManager.ConnectionStrings["MyDB"].ConnectionString,
CommandType.Text,
sqlQuery,
sqlParams);
</code></pre>
<p>ConfigurationManager.AppSettings["ConnectionString"] would be looking in the AppSettings for something named "ConnectionString", which it would not find. This is why your error message indicated the "ConnectionString" property has not been initialized, because it is looking for an initialized property of AppSettings named "ConnectionString".</p>
<p>ConfigurationManager.ConnectionStrings["MyDB"].ConnectionString instructs to look for the connection string named "MyDB".</p>
<p><a href="http://weblogs.asp.net/owscott/archive/2005/08/26/Using-connection-strings-from-web.config-in-ASP.NET-v2.0.aspx" rel="nofollow">Here is someone talking about using web.config connection strings</a></p>
http://stackoverflow.com/questions/1007786/how-to-fix-the-connectionstring-property-has-not-been-initialized/1007941#10079411Answer by Crossbrowser for How to fix "The ConnectionString property has not been initialized"Crossbrowser2009-06-17T15:50:58Z2009-06-17T15:50:58Z<p>The connection string is <strong>not</strong> in <strong><em>AppSettings</em></strong>.</p>
<p>What you're looking for is in:</p>
<pre><code>System.Configuration.ConfigurationManager.ConnectionStrings["MyDB"]...
</code></pre>