After the load is connected to the variable string "connectionString", Question of the standard functions of C # can be taken out each piece as: [Server = localhost] and [Port = 5432] and ... [CommandTimeout = 10], to give them form into log form as SQL Server Management Studio 2005 from here Modifying, update, add delete, ... and after the break will be saved to the app.config file
Not quite sure what your question is here.
Most database drivers provide a ConnectionStringBuilder that will help you to set the necessary properties ang get the result connectionstring.
Ex:
var csb = new System.Data.SqlClient.SqlConnectionStringBuilder();
csb.DataSource = "myserver";
csb.InitialCatalog = "mydatabase";
csb.IntegratedSecurity = true;
Console.WriteLine(csb.ConnectionString);
Will give this output (connection string):
Data Source=myserver;Initial Catalog=mydatabase;Integrated Security=True
You will have to update app/web config manually tho'.
ok, thanks
Copyright (c) Marimer LLC