Click here to Skip to main content
15,886,110 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 282K   37.1K   131  
Utility for comparing two SQLite database files for both structure and data
using System;
using System.Collections.Generic;
using System.Text;

namespace SQLiteParser
{
    class SQLiteCollateExpression : SQLiteExpression
    {
        private SQLiteCollateExpression()
        {
        }

        public SQLiteCollateExpression(SQLiteExpression expr, string collationName)
        {
            _expr = expr;
            CollationName = collationName;
        }

        public SQLiteExpression Expression
        {
            get { return _expr; }
            set { _expr = value; }
        }

        public string CollationName
        {
            get { return _collationName; }
            set 
            {
                _collationName = Utils.QuoteIfNeeded(value);
            }
        }

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

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

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

            if (!RefCompare.Compare(_expr, dst._expr))
                return false;

            if (_collationName != dst._collationName)
                return false;

            return base.Equals(obj);
        }

        public override string ToString()
        {
            string res = _expr.ToString() + " COLLATE " + _collationName;
            return res;
        }

        public override object Clone()
        {
            SQLiteExpression expr = null;
            if (_expr != null)
                expr = (SQLiteExpression)_expr.Clone();

            SQLiteCollateExpression res = new SQLiteCollateExpression();
            res._expr = expr;
            res._collationName = _collationName;
            return res;
        }

        private SQLiteExpression _expr;
        private string _collationName;
    }
}

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