SchemaTableOptionalColumn.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / Common / SchemaTableOptionalColumn.cs / 1305376 / SchemaTableOptionalColumn.cs

                            //------------------------------------------------------------------------------ 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
 
namespace System.Data.Common { 

    // optional columns that DataAdapter.Fill(Schema) will pay attention to 
    // when constructing new DataColumns to add to a DataTable
    public static class SchemaTableOptionalColumn {

        public static readonly string ProviderSpecificDataType = "ProviderSpecificDataType"; 

        public static readonly string IsAutoIncrement = "IsAutoIncrement"; 
        public static readonly string IsHidden        = "IsHidden"; 
        public static readonly string IsReadOnly      = "IsReadOnly";
        public static readonly string IsRowVersion    = "IsRowVersion"; 
        public static readonly string BaseServerName  = "BaseServerName";
        public static readonly string BaseCatalogName = "BaseCatalogName";

        public static readonly string AutoIncrementSeed = "AutoIncrementSeed"; 
        public static readonly string AutoIncrementStep = "AutoIncrementStep";
        public static readonly string DefaultValue      = "DefaultValue"; 
        public static readonly string Expression        = "Expression"; 

        public static readonly string BaseTableNamespace  = "BaseTableNamespace"; 
        public static readonly string BaseColumnNamespace = "BaseColumnNamespace";
        public static readonly string ColumnMapping       = "ColumnMapping";
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
 
namespace System.Data.Common { 

    // optional columns that DataAdapter.Fill(Schema) will pay attention to 
    // when constructing new DataColumns to add to a DataTable
    public static class SchemaTableOptionalColumn {

        public static readonly string ProviderSpecificDataType = "ProviderSpecificDataType"; 

        public static readonly string IsAutoIncrement = "IsAutoIncrement"; 
        public static readonly string IsHidden        = "IsHidden"; 
        public static readonly string IsReadOnly      = "IsReadOnly";
        public static readonly string IsRowVersion    = "IsRowVersion"; 
        public static readonly string BaseServerName  = "BaseServerName";
        public static readonly string BaseCatalogName = "BaseCatalogName";

        public static readonly string AutoIncrementSeed = "AutoIncrementSeed"; 
        public static readonly string AutoIncrementStep = "AutoIncrementStep";
        public static readonly string DefaultValue      = "DefaultValue"; 
        public static readonly string Expression        = "Expression"; 

        public static readonly string BaseTableNamespace  = "BaseTableNamespace"; 
        public static readonly string BaseColumnNamespace = "BaseColumnNamespace";
        public static readonly string ColumnMapping       = "ColumnMapping";
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK