//-----------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.
// 
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
    /// 
    /// Database states (used in ).
    /// 
    public enum JET_dbstate
    {
        /// 
        /// The database was just created.
        /// 
        JustCreated = 1,
        /// 
        /// Dirty shutdown (inconsistent) database.
        /// 
        DirtyShutdown = 2,
        /// 
        /// Clean shutdown (consistent) database.
        /// 
        CleanShutdown = 3,
        /// 
        /// Database is being converted.
        /// 
        BeingConverted = 4,
        /// 
        /// Database was force-detached.
        /// 
        ForceDetach = 5,
    }
}