Click here to Skip to main content
15,891,136 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 284.2K   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 SQLiteLimitClause
    {
        private SQLiteLimitClause()
        {
        }

        public SQLiteLimitClause(SQLiteExpression limit)
        {
            _limit = limit;
        }

        public SQLiteLimitClause(SQLiteExpression limit, SQLiteExpression offset)
        {
            _limit = limit;
            _offset = offset;
        }

        public SQLiteExpression LimitExpression
        {
            get { return _limit; }
            set { _limit = value; }
        }

        public SQLiteExpression OffsetExpression
        {
            get { return _offset; }
            set { _offset = value; }
        }

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

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

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

            return true;
        }

        public override string ToString()
        {
            if (_offset == null)
                return "LIMIT " + _limit.ToString();
            return "LIMIT " + _limit.ToString() + " OFFSET " + _offset.ToString();
        }

        public virtual object Clone()
        {
            SQLiteExpression limit = null;
            if (_limit != null)
                limit = (SQLiteExpression)_limit.Clone();
            SQLiteExpression offset = null;
            if (_offset != null)
                offset = (SQLiteExpression)_offset.Clone();

            SQLiteLimitClause res = new SQLiteLimitClause();
            res._limit = limit;
            res._offset = offset;
            return res;
        }

        private SQLiteExpression _limit;
        private SQLiteExpression _offset;
    }

}

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