Update Reference Sources to .NET Framework 4.6
[mono.git] / mcs / class / referencesource / System.Data / System / Data / Odbc / odbcmetadatacolumnnames.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="OdbcMetaDataColumnNames.cs" company="Microsoft">
3 //      Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">Microsoft</owner>
6 // <owner current="true" primary="false">Microsoft</owner>
7 //------------------------------------------------------------------------------
8
9 namespace System.Data.Odbc {
10
11     public static class OdbcMetaDataColumnNames {
12
13         public static readonly string BooleanFalseLiteral       = "BooleanFalseLiteral";
14         public static readonly string BooleanTrueLiteral        = "BooleanTrueLiteral";
15         public static readonly string SQLType                   = "SQLType";
16         
17     } 
18 }
19
20