FDO .NET API Reference Feature Data Objects

mgDataType.h

Go to the documentation of this file.
00001 /*
00002 * Copyright (C) 2004-2006  Autodesk, Inc.
00003 * 
00004 * This library is free software; you can redistribute it and/or
00005 * modify it under the terms of version 2.1 of the GNU Lesser
00006 * General Public License as published by the Free Software Foundation.
00007 * 
00008 * This library is distributed in the hope that it will be useful,
00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011 * Lesser General Public License for more details.
00012 * 
00013 * You should have received a copy of the GNU Lesser General Public
00014 * License along with this library; if not, write to the Free Software
00015 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00016 *
00017 */
00018 
00019 #pragma  once
00020 
00021 /// \cond DOXYGEN-IGNORE
00022 BEGIN_NAMESPACE_OSGEO_FDO_SCHEMA
00023 /// \endcond
00024 
00025 /// \ingroup (OSGeoFDOSchema)
00026 /// \brief
00027 /// The DataType enumeration lists all of the base data types supported by FDO.
00028 public __value enum DataType
00029 {
00030     /// Represents a Boolean value of true or false.
00031     DataType_Boolean = FdoDataType_Boolean,
00032 
00033     /// Represents unsigned 8-bit integers with values between 0 and 255.
00034     DataType_Byte = FdoDataType_Byte,
00035 
00036     /// Represents a date and time value.
00037     DataType_DateTime = FdoDataType_DateTime,
00038 
00039     /// Represents values ranging from 1.0 x 10^-28 to approximately 7.9 x 10^28
00040     /// with 28-29 significant digits.
00041     DataType_Decimal = FdoDataType_Decimal,
00042 
00043     /// Represents a floating point value ranging from approximately 5.0 
00044     /// x 10^-324 to 1.7 x 10^308 with a precision of 15-16 digits.
00045     DataType_Double = FdoDataType_Double,
00046 
00047     /// Represents signed 16-bit integers with values between -32768 and 32767.
00048     DataType_Int16 = FdoDataType_Int16,
00049 
00050     /// Represents signed 32-bit integers with values between -2147483648 
00051     /// and 2147483647.
00052     DataType_Int32 = FdoDataType_Int32,
00053 
00054     /// Represents signed 64-bit integers with values 
00055     /// betwenn -9223372036854775808 and 9223372036854775807.
00056     DataType_Int64 = FdoDataType_Int64,
00057 
00058     /// Represents floating point values ranging from approximately 1.5 x 10^-45
00059     /// to 3.4 x 10^38, with a precision of 7 digits. 
00060     DataType_Single = FdoDataType_Single,
00061 
00062     /// Represents a Unicode character strings.
00063     DataType_String = FdoDataType_String,
00064 
00065     /// Represents a binary large object stored as a collection of bytes.
00066     DataType_BLOB = FdoDataType_BLOB,
00067 
00068     /// Represents a character large object stored as a collection of
00069     /// characters.
00070     DataType_CLOB = FdoDataType_CLOB,
00071 };
00072 
00073 /// \cond DOXYGEN-IGNORE
00074 END_NAMESPACE_OSGEO_FDO_SCHEMA
00075 /// \endcond

Comments or suggestions? Send us feedback.