//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// rickfe
// stevesta
//------------------------------------------------------------------------------
namespace System.Data.Common {
public enum IdentifierCase {
Unknown = 0,
Insensitive = 1,
Sensitive = 2
}
}