DataLoadOptions
DataLoadOptions is a class found in the System.Data.OleDb namespace of the .NET framework. It was introduced to provide developers with greater flexibility when loading data from OLE DB data sources into application objects such as DataSets or DataTables. By specifying a DataLoadOptions instance, code can control how recordsets are fetched, when schema information is retrieved, and how the data is cached in memory.
Typical usage occurs in conjunction with the OleDbDataAdapter. A developer creates a DataLoadOptions object, sets its
The class exposes a handful of properties that map to underlying OLE DB provider capabilities. For example,
Developers should consider the capabilities and limits of their OLE DB provider when using DataLoadOptions. Some