Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / XML

DBKeeperNet - Keeps Your DB Schema Up-to-date

Rate me:
Please Sign up or sign in to vote.
4.88/5 (14 votes)
26 Aug 2014BSD4 min read 50.4K   575   89  
An article describing a simple .NET library which simply keeps your database schema up-to-date.
using System.Collections.Generic;
using System.IO;
using System.Text;

namespace DbKeeperNet.Engine
{
    /// <summary>
    /// Default implementation of <see cref="ISqlScriptSplitter"/>
    /// </summary>
    /// <remarks>
    /// <para>Commands are splitted using <c><![CDATA[<GO>]]></c> statement on separated line.</para>
    /// <para>Each command is terminated by end-of-line.</para>
    /// <example>
    /// Command without delimiter:
    /// <code>
    /// SELECT * FROM Test
    /// </code>
    /// 
    /// Command with delimiter:
    /// <code>
    /// <![CDATA[
    /// SELECT * FROM Test
    /// <GO>
    /// EXEC sp_Update_Data
    /// <GO>
    /// ]]>
    /// </code>
    /// </example>
    /// </remarks>
    public class SqlScriptSplitter:ISqlScriptSplitter
    {
        private const string _commandSeparator = @"<GO>";

        /// <summary>
        /// Split the given SQL script possibly containing multiple commands
        /// to single commands which can be executed by database service.
        /// </summary>
        /// <param name="script">
        /// SQL script to be executed:
        /// <list type="bullet">
        /// <item>Single script without any delimiter</item>
        /// <item>Multiple commands delimited by a delimiter (e.g. <c><![CDATA[<GO>]]></c>. Last command must be terminated as well.</item>
        /// </list>
        /// </param>
        /// <returns>Collection of string representing single commands</returns>
        public IEnumerable<string> SplitScript(string script)
        {
            using(var reader = new StringReader(script))
            {
                var command = new StringBuilder();
                var terminationFound = false;

                while(true)
                {
                    var line = reader.ReadLine();

                    if (line == null) break;

                    if (line.Trim().Equals(_commandSeparator))
                    {
                        terminationFound = true;

                        var commandToRun = command.ToString();
                        command = new StringBuilder();

                        yield return commandToRun;
                    }
                    else
                    {
                        command.AppendLine(line);
                    }
                }

                if (!terminationFound) yield return command.ToString();
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Team Leader NCR
Czech Republic Czech Republic
I'm software developer since 1996. I started with assembler on Intel 8051 CPUs, during years I was interested in C, C++, Sybase PowerBuilder, PHP, Sybase Anywhere Database, MSSQL server and multiplatform development.

Currently I'm developing in C++ and C# (this is my favorit and I spent some time with MCPD achievement). I'm also interested in design patterns.

Comments and Discussions