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