Click here to Skip to main content
15,893,487 members
Articles / Desktop Programming / Windows Forms

SQLite Compare Utility

Rate me:
Please Sign up or sign in to vote.
4.89/5 (68 votes)
21 Feb 2015LGPL35 min read 285K   37.2K   131  
Utility for comparing two SQLite database files for both structure and data
using System;
using System.Collections.Generic;
using System.Text;

namespace SQLiteParser
{
    public class SQLiteCaseExpression : SQLiteExpression
    {
        private SQLiteCaseExpression()
        {
        }

        public SQLiteCaseExpression(SQLiteExpression caseOperand, List<SQLiteCaseItem> caseItems, SQLiteExpression caseElse)
        {
            _caseOperand = caseOperand;
            _caseItems = caseItems;
            _caseElse = caseElse;
        }

        public SQLiteExpression CaseOperand
        {
            get { return _caseOperand; }
            set { _caseOperand = value; }
        }

        public List<SQLiteCaseItem> CaseItems
        {
            get { return _caseItems; }
            set { _caseItems = value; }
        }

        public SQLiteExpression CaseElse
        {
            get { return _caseElse; }
            set { _caseElse = value; }
        }

        public override bool IsConstant(bool allowNull)
        {
            return false;
        }

        public override bool Equals(object obj)
        {
            if (obj == null)
                return false;

            SQLiteCaseExpression dst = obj as SQLiteCaseExpression;
            if (dst == null)
                return false;

            if (!RefCompare.CompareMany(_caseOperand, dst._caseOperand, _caseElse, dst._caseElse))
                return false;
            if (!RefCompare.CompareList<SQLiteCaseItem>(_caseItems, dst._caseItems))
                return false;

            return base.Equals(obj);
        }

        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();
            sb.Append("CASE");
            if (_caseOperand != null)
                sb.Append(" " + _caseOperand.ToString());
            if (_caseItems != null)
            {
                sb.Append(" ");
                for (int i = 0; i < _caseItems.Count; i++)
                {
                    sb.Append(_caseItems[i].ToString());
                    if (i < _caseItems.Count - 1)
                        sb.Append(" ");
                } // for
            } // if
            if (_caseElse != null)
                sb.Append(" ELSE " + _caseElse.ToString());
            sb.Append(" END");

            return sb.ToString();
        }

        public override object Clone()
        {
            SQLiteExpression caseOperand = null;
            if (_caseOperand != null)
                caseOperand = (SQLiteExpression)_caseOperand.Clone();
            List<SQLiteCaseItem> caseItems = null;
            if (_caseItems != null)
            {
                caseItems = new List<SQLiteCaseItem>();
                foreach (SQLiteCaseItem ci in _caseItems)
                    caseItems.Add((SQLiteCaseItem)ci.Clone());
            }
            SQLiteExpression caseElse = null;
            if (_caseElse != null)
                caseElse = (SQLiteExpression)_caseElse.Clone();

            SQLiteCaseExpression res = new SQLiteCaseExpression();
            res._caseElse = caseElse;
            res._caseItems = caseItems;
            res._caseOperand = caseOperand;
            return res;
        }

        private SQLiteExpression _caseOperand;
        private List<SQLiteCaseItem> _caseItems;
        private SQLiteExpression _caseElse;
    }
}

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 GNU Lesser General Public License (LGPLv3)


Written By
Software Developer
Israel Israel
My name is Liron Levi and I'm developing software for fun & profit for 15 years already.

Comments and Discussions