Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / C#

Lightweight DB Framework

Rate me:
Please Sign up or sign in to vote.
3.63/5 (6 votes)
23 May 2006CPOL3 min read 40.9K   159   28  
Manage small database tables with lightweight and simple C# code. Best suited for PocketPC and Windows Mobile devices
using System;
using System.Collections.Generic;
using System.Text;

namespace Reflective.LightWeightDB
{
    /// <summary>
    /// Throw this exception when there is a problem with Saving/Loading database data
    /// </summary>
    public class DatabaseException : ApplicationException
    {
        #region Constructors
        public DatabaseException()
            : base()
        {
        }

        public DatabaseException(string msg)
            : base(msg)
        {
        }

        public DatabaseException(string msg, Exception inner)
            : base(msg, inner)
        {
        }
        #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 Code Project Open License (CPOL)


Written By
Web Developer
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions