Click here to Skip to main content
15,895,746 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 285.3K   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 SQLiteTurbo
{
    /// <summary>
    /// Conveys progress informatio
    /// </summary>
    public class ProgressEventArgs : EventArgs
    {
        #region Constructors
        public ProgressEventArgs(bool done, int progress, string msg, Exception error)
        {
            _done = done;
            _progress = progress;
            _msg = msg;
            _error = error;
        }
        #endregion

        #region Public Properties
        public bool IsDone
        {
            get { return _done; }
            set { _done = value; }
        }

        public int Progress
        {
            get { return _progress; }
            set { _progress = value; }
        }

        public string Message
        {
            get { return _msg; }
            set { _msg = value; }
        }

        public Exception Error
        {
            get { return _error; }
            set { _error = value; }
        }

        public ProgressEventArgs NestedProgress
        {
            get { return _nested; }
            set { _nested = value; }
        }
        #endregion

        #region Private Variables
        private bool _done;
        private int _progress;
        private string _msg;
        private Exception _error;
        private ProgressEventArgs _nested;
        #endregion
    }
}

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