Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OleDbLiteral.cs « System.Data.OleDb « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9b2da42d27e16e038a655210e4202c34b0c8744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// System.Data.OleDb.OleDbLiteral
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// Copyright (C) Rodrigo Moya, 2002
//

using System.Data;
using System.Data.Common;

namespace System.Data.OleDb
{
	public enum OleDbLiteral {
		Binary_Literal,
		Catalog_Name,
		Catalog_Separator,
		Char_Literal,
		Column_Alias,
		Column_Name,
		Correlation_Name,
		Cube_Name,
		Cursor_Name,
		Dimension_Name,
		Escape_Percent_Prefix,
		Escape_Percent_Suffix,
		Escape_Underscore_Prefix,
		Escape_Underscore_Suffix,
		Hierarchy_Name,
		Index_Name,
		Invalid,
		Level_Name,
		Like_Percent,
		Like_Underscore,
		Member_Name,
		Procedure_Name,
		Property_Name,
		Quote_Prefix,
		Quote_Suffix,
		Schema_Name,
		Schema_Separator,
		Table_Name,
		Text_Command,
		User_Name,
		View_Name
	}
}