6
In my app.config I have the following lines of code:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<connectionStrings>
<add name="ControleBD"
connectionString="Data Source=SERVIDOR\SQLEXPRESS;Initial Catalog=Controle;User ID=Adminx;Password=123456"
providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
How do I change the value of connectionString physically in Runtime?
I’ve done it, but as you said, it’s only changed in memory. I’d like to physically alter.
– cumpadi