| File: OleDbMetadataCollectionNames.cs | Web Access |
| Project: src\runtime\src\libraries\System.Data.OleDb\src\System.Data.OleDb.csproj (System.Data.OleDb) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Data.OleDb { public static class OleDbMetaDataCollectionNames { public static readonly string Catalogs = "Catalogs"; public static readonly string Collations = "Collations"; public static readonly string Columns = "Columns"; public static readonly string Indexes = "Indexes"; public static readonly string Procedures = "Procedures"; public static readonly string ProcedureColumns = "ProcedureColumns"; public static readonly string ProcedureParameters = "ProcedureParameters"; public static readonly string Tables = "Tables"; public static readonly string Views = "Views"; } }