Click here to Skip to main content
Click here to Skip to main content
Articles » Database » Database » SQL Server » Downloads
 

SQLite Compare Utility

By , 6 Jul 2011
 
SQLiteCompare.zip
SQLiteCompare
AutomaticUpdates
Properties
Be.Windows.Forms.HexBox
Design
HexBox.bmp
HexBox.snk
Thumbs.db
Common
Properties
CreateTestDatabases
Properties
TestSchemaFiles
DiffControl
Properties
FastGrid
Properties
Settings.settings
gplex.exe
gplexx.frame
gppg.exe
license.lic
Liron.Windows.Forms
Design
multipanel.ico
Properties
Thumbs.db
log4net.dll
Puzzle.SyntaxBox.NET3.5.dll
Setup
appicon.ico
finish_banner.bmp
installer_banner.bmp
setup.nsi
Thumbs.db
uninstallicon.ico
ShiftReduceParser.dll
SQLiteParser
Properties
sqlite.lex
sqlite.y
SQLiteTurbo
Properties
Settings.settings
Resources
feedback_non_selected_idea.png
feedback_non_selected_question.png
feedback_pressed.png
feedback_problem_non_selected.png
feedback_problem_selected.png
feedback_selected_idea.png
feedback_selected_question.png
feedback2.png
normal_feedback_button.png
pressed_feedback_button.png
sqlite.syn
SQLiteTurbo.csproj.user
SQLiteTurboDiff.suo
SVG
about.svg
accept.svg
app.svg
appicon.svg
bug.svg
check_updates.svg
close_comparison.svg
company_tagline.svg
compare.svg
copy_from_left_db.svg
copy_from_right_db.svg
edit_selected_difference.svg
feather.svg
feedback.svg
feedback_frame.svg
feedback_non_selected_idea.svg
feedback_non_selected_problem.svg
feedback_question.svg
feedback_selected_problem.svg
feedback_selected_question.svg
finish_page_banner.svg
free.svg
generate_script_left_to_right.svg
generate_script_right_to_left.svg
greenpinesoftware_logo.svg
home_screenshot.svg
installer_banner.svg
key.svg
lamp.svg
lamp_non_selected.svg
lamp_selected.svg
lock.svg
main_screen.svg
next_diff.svg
prev_diff.svg
question.svg
recycle_bin.svg
redo.svg
reject.svg
reorder_columns.svg
save_schema.svg
search.svg
smallbug.svg
sqlite_compare_logo.svg
sqlite_feather.svg
text2451.png
undo.svg
uninstall.svg
v_bullet.svg
System.Data.SQLite.dll
UndoRedo
Properties
SQLiteCompareSetup.zip
SQLiteCompareSetup.exe
SQLiteCompare_src.zip
HexBox.bmp
HexBox.snk
Thumbs.db
Settings.settings
gplex.exe
gplexx.frame
gppg.exe
license.lic
multipanel.ico
Thumbs.db
log4net.dll
Puzzle.SyntaxBox.NET3.5.dll
appicon.ico
finish_banner.bmp
installer_banner.bmp
setup.nsi
Thumbs.db
uninstallicon.ico
ShiftReduceParser.dll
sqlite.lex
sqlite.y
Settings.settings
feedback_non_selected_idea.png
feedback_non_selected_question.png
feedback_pressed.png
feedback_problem_non_selected.png
feedback_problem_selected.png
feedback_selected_idea.png
feedback_selected_question.png
feedback2.png
normal_feedback_button.png
pressed_feedback_button.png
sqlite.syn
SQLiteTurbo.csproj.user
SQLiteTurboDiff.suo
about.svg
accept.svg
app.svg
appicon.svg
bug.svg
check_updates.svg
close_comparison.svg
company_tagline.svg
compare.svg
copy_from_left_db.svg
copy_from_right_db.svg
edit_selected_difference.svg
feather.svg
feedback.svg
feedback_frame.svg
feedback_non_selected_idea.svg
feedback_non_selected_problem.svg
feedback_question.svg
feedback_selected_problem.svg
feedback_selected_question.svg
finish_page_banner.svg
free.svg
generate_script_left_to_right.svg
generate_script_right_to_left.svg
greenpinesoftware_logo.svg
home_screenshot.svg
installer_banner.svg
key.svg
lamp.svg
lamp_non_selected.svg
lamp_selected.svg
lock.svg
main_screen.svg
next_diff.svg
prev_diff.svg
question.svg
recycle_bin.svg
redo.svg
reject.svg
reorder_columns.svg
save_schema.svg
search.svg
smallbug.svg
sqlite_compare_logo.svg
sqlite_feather.svg
text2451.png
undo.svg
uninstall.svg
v_bullet.svg
System.Data.SQLite.dll
using System;
using System.Collections.Generic;
using System.Text;

namespace AutomaticUpdates
{
    /// <summary>
    /// Contains information regarding a bug that was fixed
    /// </summary>
    [Serializable]
    public class BugFixInfo
    {
        public BugFixInfo()
        {
        }

        public BugFixInfo(BugSeverity severity, string description)
        {
            _severity = severity;
            _description = description;
        }

        /// <summary>
        /// Get the severity level of the bug
        /// </summary>
        public BugSeverity Severity
        {
            get { return _severity; }
            set { _severity = value; }
        }

        /// <summary>
        /// Get the description of the bug
        /// </summary>
        public string Description
        {
            get { return _description; }
            set { _description = value; }
        }

        private BugSeverity _severity;
        private string _description;
    }

    /// <summary>
    /// Enumerates the possible severity levels for bugs
    /// </summary>
    public enum BugSeverity
    {
        None = 0,

        Minor = 1,

        Major = 2,

        Critical = 3,
    }
}

By viewing downloads associated with this article you agree to the Terms of use 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)

About the Author

liron.levi
Software Developer Arineta Cardio Imaging
Israel Israel
Member
My name is Liron Levi and I'm developing software for fun & profit for 15 years already. I'm now working for Arineta Cardio Imaging as a software developer (the company develops a CT machine).
 
I can be contacted directly at liron.levi@outlook.com

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 6 Jul 2011
Article Copyright 2011 by liron.levi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid