Click here to Skip to main content
15,860,943 members
Articles / Programming Languages / C#
Tip/Trick

Adding connection string during installation

Rate me:
Please Sign up or sign in to vote.
4.73/5 (15 votes)
11 Jul 2013CPOL3 min read 2.1M   42   41
Setup file creation and adding a connection string custom control.

Contents

Introduction

In this article we are going to see how we can create a setup (MSI) file for a Windows application. Along with setup creation we are adding a custom control to the MSI file which facilitates framing the connection string during installation. Connection string details (instance name, database name) will be taken from the user during the installation process. For adding a custom control to the setup we need to design a page which facilitates taking all the inputs that are necessary to frame the connection string.

How it is useful

  • This custom control enables the end user to make his own connection string during installation process.
  • It eliminates the hard coding of connection string in the App.config file which makes an application more user friendly.

Methodology

We can divide this into two parts:

  • Creation of setup file
  • Adding custom control to setup

Creation of setup file

  • Step 1: Open or Create an application, add a new project by right click > Solution Explorer >Add >New Project > Other Project types>Setup and Deployment >Visual Studio Installer >Setup Project (Windows app) for Web App (Web setup Project).
  • Step 2: Add Web.config or App.config and the installer class (right click >project>Add new Item >Installer class) to existing project.
  • Step 3: Go to properties of the Setup project and change Author name, Manufacturer, Product name, Title etc.
  • Step 4: Right click on Setup project >Add >Project Output > Select primary out put and Content files too.
  • Step 5: Select the referring DLLs of the application right click> Properties> Set copy to local to True.
  • C#
    //Installer.cs 
    string dataSource = "Data Source =" + Context.Parameters["DataSource"];
    string initialcatalog = "Initial Catalog=" + Context.Parameters["InitialCatalog"];
    dataSource = dataSource + ";" + initialcatalog;
    dataSource = dataSource + ";Integrated Security=SSPI;";
    MessageBox.Show("instance=" + dataSource);
    ExeConfigurationFileMap map = new ExeConfigurationFileMap();
    MessageBox.Show(Assembly.GetExecutingAssembly().Location + ".config");
    //Getting the path location 
    string configFile = string.Concat(Assembly.GetExecutingAssembly().Location, ".config");
    map.ExeConfigFilename = configFile;
    System.Configuration.Configuration config = System.Configuration.ConfigurationManager.
    OpenMappedExeConfiguration(map, System.Configuration.ConfigurationUserLevel.None);
    string connectionsection = config.ConnectionStrings.ConnectionStrings
    ["SqlConnectionString"]"ConnectionString;
    
    ConnectionStringSettings connectionstring = null;
    if (connectionsection != null)
    {
        config.ConnectionStrings.ConnectionStrings.Remove("SqlConnectionString");
        MessageBox.Show("removing existing Connection String");
    }
    
    connectionstring = new ConnectionStringSettings("SqlConnectionString", dataSource);
    config.ConnectionStrings.ConnectionStrings.Add(connectionstring);
    
    config.Save(ConfigurationSaveMode.Modified, true);
    ConfigurationManager.RefreshSection("connectionStrings");

Adding custom control

Designing the custom control

We need to design our custom control according to our requirements. In this scenario we require text boxes, we will have inbuilt text boxes, we need to add those to our custom install wizard. We can make four text boxes which can be enabled and disabled with the property "Edit Visible". We can also adjust the display of our designed control with respect to the installation process.

UI design for custom control

Image 1

Alignment order of installation process

Image 2

  • Step 1: Right click on Setup project > View >User Interface. It will show the installation process steps. Right click on Start node>Add Dialog>Select Text boxes>Change properties accordingly. In properties it shows four text boxes. If we set property (Edit Visible) to true it will be visible.
  • Image 3

  • Step 2: Right click on Setup project > View >Custom Actions> Click on Install node>Add Custom Action>Click on to Application Folder>Choose Primary output file. Perform the same action for Commit, Rollback, Uninstall nodes.
  • Step 3: Go to properties of the primary output file of Install node, Custom Action Data, pass the input parameters of the connection string as follows.
  • /DataSource="[EDITA1]" /InitialCatalog="[EDITA2]" /UserID="[EDITA3]" /Password="[EDITA4]"

    For this data should pass as <Key> and <value>. Text box label name should match the key and property name match the value. We should provide custom action data to the primary output file of install only.

    Image 4

  • Step 4: The setup file will be created once we complete the Build and the setup file is created in the debug folder. Install it and check the config file in the installed location (C:/programming files /path name .....) and you will get the new connection string with user provided details.

Next article: Creation of Custom installer for Web application.

Points to remember

  • Custom Action Data will take all input parameters as a single string.
  • We need to provide input in (Custom Action Data) primary output file of install node only. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) @ CSC
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.
This is a Organisation

8 members

Comments and Discussions

 
QuestionI want to impletement this feature in my application Pin
sahabiswarup15-Jul-13 0:38
sahabiswarup15-Jul-13 0:38 
QuestionNot supported in .Net 4.5 Pin
FatCatProgrammer9-Jul-13 6:18
FatCatProgrammer9-Jul-13 6:18 
AnswerRe: Not supported in .Net 4.5 Pin
Purushotham Agaraharam5-Aug-13 18:58
Purushotham Agaraharam5-Aug-13 18:58 
AnswerRe: Not supported in .Net 4.5 Pin
Purushotham Agaraharam20-Apr-14 18:59
Purushotham Agaraharam20-Apr-14 18:59 
QuestionThank u Pin
Rani Chehadeh3-Jul-13 3:39
Rani Chehadeh3-Jul-13 3:39 
AnswerRe: Thank u Pin
Purushotham Agaraharam5-Jul-13 0:24
Purushotham Agaraharam5-Jul-13 0:24 
QuestionSqlConnectionStringBuilder Pin
nano2k25-Jun-13 0:53
nano2k25-Jun-13 0:53 
AnswerRe: SqlConnectionStringBuilder Pin
Purushotham Agaraharam4-Jul-13 23:55
Purushotham Agaraharam4-Jul-13 23:55 
Nice Question Smile | :)
Yes, Definitely we can manipulate any part of Connection String. If you are using any services like WCF
we need to point to the corresponding hosted service location to manipulate or else you can update connection string details in your local path.
Thanks,
Purushotham
GeneralMy vote of 5 Pin
Hernán Hegykozi2-Nov-12 11:48
Hernán Hegykozi2-Nov-12 11:48 
GeneralMy vote of 5 Pin
D-Kishore3-Sep-12 21:55
D-Kishore3-Sep-12 21:55 
NewsThank you Pin
tas29-Aug-12 22:09
tas29-Aug-12 22:09 
GeneralRe: Thank you Pin
Purushotham Agaraharam30-Aug-12 3:39
Purushotham Agaraharam30-Aug-12 3:39 
AnswerThanks Pin
J. Wijaya28-Aug-12 18:21
J. Wijaya28-Aug-12 18:21 
GeneralRe: Thanks Pin
Purushotham Agaraharam30-Aug-12 3:43
Purushotham Agaraharam30-Aug-12 3:43 
QuestionVery Well Written. My Vote 5 Pin
Grasshopper.iics26-Aug-12 3:35
Grasshopper.iics26-Aug-12 3:35 
GeneralMy vote of 5 Pin
Christian Amado24-Aug-12 16:44
professionalChristian Amado24-Aug-12 16:44 
GeneralRe: My vote of 5 Pin
seyinow28-Dec-12 3:18
seyinow28-Dec-12 3:18 
GeneralRe: My vote of 5 Pin
Purushotham Agaraharam28-Dec-12 3:37
Purushotham Agaraharam28-Dec-12 3:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.