Click here to Skip to main content
Licence CPOL
First Posted 6 Apr 2005
Views 114,317
Downloads 2,089
Bookmarked 156 times

Deploy SQL Server databases easily with an Installer class

By | 6 Apr 2005 | Article
Deploy MS SQL Server databases using System.Configuration.Install and a VS.NET Setup Project.
 
Part of The SQL Zone sponsored by
See Also

Sample Image - sqlscriptinstall.jpg

Introduction

If you made an application that is using an SQL Server database that needs to be located on the client server, VS.NET Setup Project doesn't help too much, you could go for InstallShild or other product that will make things easy but the costs will get higher. So searching for a free solution I've found an article on MSDN about using the Installer class and custom actions to make this happen. The code is in VB.NET, so this article is porting it to c# with some new features that I've found useful. All you need to do is to make a class derived from System.Configuration.Install and add to the solution two Embedded Resources named install.txt & uninstall.txt. The install.txt will contain the SQL script for your database and uninstall.txt the drop script. For the database script, I am using the ASPstate script made by Microsoft team for the ASP.NET InSQL session state:

< sessionState
mode ="SQLServer"
stateConnectionString ="tcpip=127.0.0.1:42424"
sqlConnectionString ="data source=aleph;User ID=ASPsession;Password=ASPsession;"
cookieless ="false"
timeout ="60"
/>

For my web application to work on a client server, I need to make a MSI with my app and the SQL script. To run the script at install time I've made a .dll named ScriptInstall, the code for it will follow.

Installer Class Code

First we declare a string that will have a default value and can be overwrite by the Install method:

string conStr="packet size=4096;integrated security=SSPI;"+
        "data source=\"(local)\";persist security info=False;"+
        "initial catalog=master";

I use two functions that will return the connection string and the script content:

private static string GetScript(string name)
{
    Assembly asm = Assembly.GetExecutingAssembly();
    Stream str = asm.GetManifestResourceStream(
                    asm.GetName().Name+ "." + name);
    StreamReader reader = new StreamReader(str);
    return reader.ReadToEnd();
}
private static string GetLogin(string databaseServer,
                 string userName,string userPass,string database)
{
    return "server=" + databaseServer + 
     ";database="+database+";User ID=" + userName +
     ";Password=" + userPass;
}

Then I use two functions that will run the install.txt and uninstall.txt onto the SQL server. The ExecuteSQL has a regex that splits the script after GO so that I can execute one by one with SQLCommand, I am doing this because ADO.NET will throw an exception if the SQL script contains "GO".

private static void ExecuteSql(SqlConnection sqlCon)
{
    string[] SqlLine;
    Regex regex = new Regex("^GO",RegexOptions.IgnoreCase | RegexOptions.Multiline);
    
    string txtSQL = GetScript("install.txt");
    SqlLine = regex.Split(txtSQL);

    SqlCommand cmd = sqlCon.CreateCommand();
    cmd.Connection = sqlCon;

    foreach(string line in SqlLine)
    {
        if(line.Length>0)
        {
            cmd.CommandText = line;
            cmd.CommandType = CommandType.Text;
            try
            {
                cmd.ExecuteNonQuery();
            }
            catch(SqlException)
            {
                //rollback
                ExecuteDrop(sqlCon);
                break;
            }
        }
    }
}
private static void ExecuteDrop(SqlConnection sqlCon)
{    
    if(sqlCon.State!=ConnectionState.Closed)sqlCon.Close();
    sqlCon.Open();
    SqlCommand cmd = sqlCon.CreateCommand();
    cmd.Connection = sqlCon;
    cmd.CommandText = GetScript("uninstall.txt");
    cmd.CommandType = CommandType.Text;
    cmd.ExecuteNonQuery();
    sqlCon.Close();
}

Having the functions now we can override the Install(IDictionary stateSaver) and Uninstall(IDictionary savedState). In the Install method besides running the SQL script on to the server I save the connection data submitted by the user. It's dangerous to save connection strings in clear, so I use RijndaelManaged to encrypt it. You can find the class in the source as well. I am saving the connection string because I need it at uninstall to drop the database ASPstate.

public override void Install(IDictionary stateSaver)
{
    base.Install (stateSaver);

    if(Context.Parameters["databaseServer"].Length>0 &&
        Context.Parameters["userName"].Length>0 &&
        Context.Parameters["userPass"].Length>0)
    {
        conStr = GetLogin(
            Context.Parameters["databaseServer"],
            Context.Parameters["userName"],
            Context.Parameters["userPass"],
            "master");

        RijndaelCryptography rijndael = new RijndaelCryptography();
        rijndael.GenKey();
        rijndael.Encrypt(conStr);
        //save information in the state-saver IDictionary
        //to be used in the Uninstall method
        stateSaver.Add("key",rijndael.Key);
        stateSaver.Add("IV",rijndael.IV);
        stateSaver.Add("conStr",rijndael.Encrypted);
    }

    SqlConnection sqlCon = new SqlConnection(conStr);

    sqlCon.Open();
    ExecuteSql(sqlCon);
    if(sqlCon.State!=ConnectionState.Closed)sqlCon.Close();
}

public override void Uninstall(IDictionary savedState)
{
    base.Uninstall (savedState);

    if(savedState.Contains("conStr"))
    {
        RijndaelCryptography rijndael = new RijndaelCryptography();
        rijndael.Key = (byte[])savedState["key"];
        rijndael.IV = (byte[])savedState["IV"];
        conStr = rijndael.Decrypt((byte[])savedState["conStr"]);            
    }

    SqlConnection sqlCon = new SqlConnection(conStr);

    ExecuteDrop(sqlCon);
}

Setup Project

Now that the installer class is done I can make a Setup project and add the primary output. In the User Interface Editor, select the Start node under Install. On the Action menu, choose Add Dialog. In the Add Dialog dialog box, select the Textboxes (A) dialog, then click OK to close the dialog box. On the Action menu, choose Move Up. Repeat until the Textboxes(A) dialog is above the Installation Folder node. Edit the properties of the Textboxes(A) form like this:

Textboxes(A) propeties

Go to the Custom Actions Editor and add the Primary output to the install and uninstall nodes. Click on the Primary output at the Install node and edit the properties. In the CustomActionData, type this:

/databaseServer=[EDITA1] /userName=[EDITA2] /userPass=[EDITA3]

I am getting the values of the Text Boxes in the Installer class using the Context.Parameters.

conStr = GetLogin(
        Context.Parameters["databaseServer"],
        Context.Parameters["userName"],
        Context.Parameters["userPass"],
        "master");

All is done now. Just build the two projects and you are ready to install the database. I hope you'll find this code useful, there are a lot of things that can be added to the code like storing safer the Key and IV of the Rijndael or using in the ExecuteSql transactions. Looking foreword to your comments.

History

  • Version 1.0

License

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

About the Author

Stefan Prodan

Technical Lead

Romania Romania

Member

Follow on Twitter Follow on Twitter
I am a software architect who likes to develop under the .net framework. I am working with C# since 2004. Please visit my tech blog www.stefanprodan.eu.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questiondatbase connection live - then try to un intall Pinmemberdacku_19873:04 24 Aug '11  
GeneralMy vote of 5 PinmemberKanasz Robert6:03 13 Nov '10  
QuestionHow to use SqlInstall.dll Pinmemberpavan_contractor1:14 6 Jul '09  
Generalexport database on to another machine Pinmemberwaquasalig0:23 16 Oct '08  
Generalvalue cannot be null parameter name: stream Pinmemberjothy_cse22:03 14 Jul '08  
AnswerRe: value cannot be null parameter name: stream PinmemberSivarajselvakumar0:01 17 May '11  
GeneralThanks Pinmembergirish_tinnu22:02 16 Apr '08  
GeneralAgain about GO PinmemberWin32nipuh19:54 13 Aug '07  
GeneralRe: Again about GO PinmemberStefan Prodan21:39 13 Aug '07  
GeneralRe: Again about GO PinmemberWin32nipuh19:36 14 Aug '07  
GeneralRegEx Change PinmemberThe Punisher11:56 28 Feb '07  
QuestionHow to stop installation if database is not validate? PinmemberYulaw2:24 13 Jul '06  
AnswerRe: How to stop installation if database is not validate? Pinmemberkovalov14:59 9 May '07  
GeneralRe: How to stop installation if database is not validate? Pinmembermikker_1237:07 31 May '07  
QuestionGO problem ;) Pinmemberbeatles169221:21 18 Feb '06  
QuestionReferences? PinmemberEduard Ralph21:59 8 Dec '05  
GeneralGreat article got my 5 + Customize the database name PinmemberCohen Shwartz Oren22:08 4 Dec '05  
GeneralMSI Repair Problem Pinmemberdjspirit0:45 7 Nov '05  
QuestionWeb Services PinmemberAsi BS0:39 11 Oct '05  
GeneralRegex "^Go" doesn't work Pinmembershakoosh5:28 1 Aug '05  
GeneralRe: Regex "^Go" doesn't work PinmemberMMaslyk2:03 22 Jun '06  
GeneralRe: Better Regex - Regex "^Go" doesn't work PinmemberAlrightyThen8:30 26 Sep '07  
GeneralPerformance PinsussNeil Mosafi22:43 24 Apr '05  
Interesting solution, but I wonder how this would perform? You would be executing several hundred ADO.NET statements for any reasonable sized database with some data already in there - this could take a while.
 
It should be possible to use osql.exe to execute the entire script in one go. After pulling out the embedded script write it out to a temp directory then execute osql using the System.Process class. Your config would have to pass in the appropriate connection details to this command. How do you think this would compare in time to install?
GeneralRe: Performance PinmemberStefan Prodan2:01 25 Apr '05  
GeneralRe: Performance PinsussNeil Mosafi2:50 25 Apr '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120528.1 | Last Updated 6 Apr 2005
Article Copyright 2005 by Stefan Prodan
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid