// // 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 } }