The Framework Class Library (FCL) is
just one component of the .NET
Framework and is similar to Java's
class libraries, the C++ Standard
Template Library (STL), Microsoft's
Active Template Library (ATL), the
Microsoft Foundation Classes (MFC),
Borland's Object Windows Library (OWL)
and many others.
It is a rich set of reusable types
allowing you to achieve a high level
of developer productivity by
simplyfying many common programming
tasks.
The Base Class Libraries (BCL) serve
as the standard runtime for any .NET
language and provide types that
represent the intrinsic CLR rtpes,
collections, streams, string
manipulation, basic file access, etc.
The remaining classes in the FCL are
focused on specific functional areas,
such as provding database access.
So, in short, all of the "higher-level" classes you use that are installed when you install the .NET Framework are part of the Framework Class Library but not necessarily part of the Base Class Library. Specifically, the ADO.NET classes are not part of the BCL but they are part of the FCL.
As to why the FCL isn't shown in the referenced figure on Wikipedia is most likely due to the fact that it isn't always easy to visually convey the fact that the FCL isn't a single physical "thing" but rather it is made up of multiple components.