Click here to Skip to main content
15,885,868 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 281.6K   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
{
    public class SQLiteIndexedColumn
    {
        public SQLiteIndexedColumn()
        {
        }

        public SQLiteIndexedColumn(string name, string collation, SQLiteSortOrder order)
        {
            ColumnName = name;
            Collation = collation;
            _order = order;
        }

        public string ColumnName
        {
            get { return _name; }
            set 
            {
                _name = Utils.QuoteIfNeeded(value);
            }
        }

        public string Collation
        {
            get { return _collation; }
            set 
            {
                _collation = Utils.QuoteIfNeeded(value);
            }
        }

        public SQLiteSortOrder SortOrder
        {
            get { return _order; }
            set { _order = value; }
        }

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

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

            if (_name != dst._name || _collation != dst._collation || _order != dst._order)
                return false;

            return true;
        }

        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();
            sb.Append(_name);
            if (_collation != null)
                sb.Append(" COLLATE " + _collation);
            if (_order == SQLiteSortOrder.Ascending)
                sb.Append(" ASC");
            else if (_order == SQLiteSortOrder.Descending)
                sb.Append(" DESC");

            return sb.ToString();
        }

        public virtual object Clone()
        {
            SQLiteIndexedColumn res = new SQLiteIndexedColumn();
            res._name = _name;
            res._collation = _collation;
            res._order = _order;
            return res;
        }

        private string _name;
        private string _collation;
        private SQLiteSortOrder _order;
    }
}

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