File: System\Data\Odbc\OdbcMetaDataCollectionNames.cs
Web Access
Project: src\src\libraries\System.Data.Odbc\src\System.Data.Odbc.csproj (System.Data.Odbc)
// 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.Odbc
{
    public static class OdbcMetaDataCollectionNames
    {
        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";
    }
}