* Makefile: Build the make-map.exe in Mono.Unix.Native; add /nowarn:0618 to
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbLiteral.cs
1 //
2 // System.Data.OleDb.OleDbLiteral
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //
7 // Copyright (C) Rodrigo Moya, 2002
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Data;
34 using System.Data.Common;
35
36 namespace System.Data.OleDb
37 {
38         public enum OleDbLiteral {
39                 Binary_Literal = 1,
40                 Catalog_Name = 2,
41                 Catalog_Separator = 3,
42                 Char_Literal = 4,
43                 Column_Alias = 5,
44                 Column_Name = 6,
45                 Correlation_Name = 7,
46                 Cube_Name = 21,
47                 Cursor_Name = 8,
48                 Dimension_Name = 22,
49                 Escape_Percent_Prefix = 9,
50                 Escape_Percent_Suffix = 29,
51                 Escape_Underscore_Prefix = 10,
52                 Escape_Underscore_Suffix = 30,
53                 Hierarchy_Name = 23,
54                 Index_Name = 11,
55                 Invalid = 0,
56                 Level_Name = 24,
57                 Like_Percent = 12,
58                 Like_Underscore = 13,
59                 Member_Name = 25,
60                 Procedure_Name = 14,
61                 Property_Name = 26,
62                 Quote_Prefix = 15,
63                 Quote_Suffix = 28,
64                 Schema_Name = 16,
65                 Schema_Separator = 27,
66                 Table_Name = 17,
67                 Text_Command = 18,
68                 User_Name = 19,
69                 View_Name = 20
70         }
71 }