.NET API Reference | OSGeo FDO Provider for ODBC |
00001 /* 00002 * (C) Copyright 2005 by Autodesk, Inc. All Rights Reserved. 00003 * 00004 * By using this code, you are agreeing to the terms and conditions of 00005 * the License Agreement included in the documentation for this code. 00006 * 00007 * AUTODESK MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE 00008 * CORRECTNESS OF THIS CODE OR ANY DERIVATIVE WORKS WHICH INCORPORATE 00009 * IT. AUTODESK PROVIDES THE CODE ON AN "AS-IS" BASIS AND EXPLICITLY 00010 * DISCLAIMS ANY LIABILITY, INCLUDING CONSEQUENTIAL AND INCIDENTAL 00011 * DAMAGES FOR ERRORS, OMISSIONS, AND OTHER PROBLEMS IN THE CODE. 00012 * 00013 * Use, duplication, or disclosure by the U.S. Government is subject 00014 * to restrictions set forth in FAR 52.227-19 (Commercial Computer 00015 * Software Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) 00016 * (Rights in Technical Data and Computer Software), as applicable. 00017 * 00018 * 00019 */ 00020 00021 #pragma once 00022 00023 class FdoSqlServerOvColumn; 00024 00025 BEGIN_NAMESPACE_OSGEO_FDO_PROVIDERS_RDBMS_OVERRIDE_SQLSERVERSPATIAL 00026 00027 ///<summary>Concrete class defining physical schema overrides for a column.</summary> 00028 public __gc class OvColumn : public NAMESPACE_OSGEO_FDO_PROVIDERS_RDBMS_OVERRIDE::OvColumn 00029 { 00030 public: 00031 ///<summary>Constructs a default of an FdoSqlServerOvColumn</summary> 00032 OvColumn(); 00033 00034 ///<summary>Constructs an instance of an FdoSqlServerOvColumn using the specified arguments</summary> 00035 /// <param name="name">Input name</param> 00036 OvColumn(System::String* name); 00037 00038 ///<summary>Gets the SQL Server formula for this column</summary> 00039 /// <remarks>An empty string denotes that there is no formula for this column; 00040 /// otherwise, the column's value is computed based on the formula.</remarks> 00041 /// <returns>Returns the SQL Server formula</returns> 00042 __property System::String* get_Formula(); 00043 00044 ///<summary>Sets the SQL Server formula for this column</summary> 00045 /// <remarks>An empty string denotes that there is no formula for this column; 00046 /// otherwise, the column's value is computed based on the formula.</remarks> 00047 /// <returns>Returns nothing</returns> 00048 __property System::Void set_Formula(System::String* formula); 00049 00050 public private: 00051 OvColumn(System::IntPtr unmanaged, System::Boolean autoDelete); 00052 00053 inline FdoSqlServerOvColumn* GetImpObj(); 00054 }; 00055 00056 END_NAMESPACE_OSGEO_FDO_PROVIDERS_RDBMS_OVERRIDE_SQLSERVERSPATIAL
Comments? |