//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
///
/// Info levels for retrieving column info.
///
internal enum JET_ColInfo
{
///
/// Default option. Retrieves a JET_COLUMNDEF.
///
Default = 0,
///
/// Retrieves a JET_COLUMNLIST structure, containing all the columns
/// in the table.
///
List = 1,
///
/// Retrieves a JET_COLUMNBASE structure.
///
Base = 4,
///
/// Retrieves a JET_COLUMNDEF, the szColumnName argument is interpreted
/// as a pointer to a columnid.
///
ByColid = 6,
}
}