// 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.Common
{
public static class DbMetaDataCollectionNames
{
public static readonly string MetaDataCollections = "MetaDataCollections";
public static readonly string DataSourceInformation = "DataSourceInformation";
public static readonly string DataTypes = "DataTypes";
public static readonly string Restrictions = "Restrictions";
public static readonly string ReservedWords = "ReservedWords";
}
}
|