New test.
[mono.git] / mcs / class / System.Data / System.Data.OleDb.jvm / OleDbLiteral.cs
1 //\r
2 // System.Data.OleDb.OleDbLiteral\r
3 //
4 // Authors:
5 //      Konstantin Triger <kostat@mainsoft.com>
6 //      Boris Kirzner <borisk@mainsoft.com>
7 //      
8 // (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //\r
31 \r
32 namespace System.Data.OleDb\r
33 {\r
34 \r
35     using System;\r
36     /**\r
37      *\r
38      */\r
39     public enum OleDbLiteral\r
40                                      {\r
41 \r
42         Invalid = 0,\r
43         Binary_Literal = 1,\r
44 \r
45         Catalog_Name = 2,\r
46 \r
47         Catalog_Separator = 3,\r
48 \r
49         Char_Literal = 4,\r
50 \r
51         Column_Alias = 5,\r
52 \r
53         Column_Name = 6,\r
54 \r
55         Correlation_Name = 7,\r
56 \r
57         Cursor_Name = 8,\r
58 \r
59         Escape_Percent_Prefix = 9,\r
60 \r
61         Escape_Underscore_Prefix = 10,\r
62 \r
63         Index_Name = 11,\r
64 \r
65         Like_Percent = 12,\r
66 \r
67         Like_Underscore = 13,\r
68 \r
69         Procedure_Name = 14,\r
70 \r
71         Quote_Prefix = 15,\r
72 \r
73         Schema_Name = 16,\r
74 \r
75         Table_Name = 17,\r
76 \r
77         Text_Command = 18,\r
78 \r
79         User_Name = 19,\r
80 \r
81         View_Name = 20,\r
82 \r
83         Cube_Name = 21,\r
84 \r
85         Dimension_Name = 22,\r
86 \r
87         Hierarchy_Name = 23,\r
88 \r
89         Level_Name = 24,\r
90 \r
91         Member_Name = 25,\r
92 \r
93         Property_Name = 26,\r
94 \r
95         Schema_Separator = 27,\r
96 \r
97         Quote_Suffix = 28,\r
98 \r
99         Escape_Percent_Suffix = 29,\r
100 \r
101         Escape_Underscore_Suffix = 30,\r
102 \r
103 \r
104     }\r
105 }