About 2,370 results
Open links in new tab
  1. OleDbEnumerator Class (System.Data.OleDb) | Microsoft Learn

    Provides a mechanism for enumerating all available OLE DB providers within the local network. Creates an instance of the OleDbEnumerator class. Determines whether the specified object …

  2. How to get a list of installed OLE DB providers? - Stack Overflow

    Jun 16, 2016 · Microsoft Excel allows import of data from "Other Sources". One of the options is to use an OLE DB provider. How to get a list of available OLE DB providers? Nearly 7 years …

  3. PowerShell - List all OLEDB Providers.md - GitHub

    NOTES ## About OLE DB Providers are used to connect to different data sources. This function returns a list of OLE DB Providers installed on the system. *NOTE: OLE DB providers are 32 …

  4. C# Helper: List OLE DB providers in C#

    The code creates an OleDbEnumerator object and uses its GetElements method to get a table holding a list of the OLE DB providers. It sets the DataGridView control's DataSource property …

  5. System.Data.OleDb.OleDbEnumerator (class) - René Nyffenegger

    Aug 19, 2021 · System.Data.OleDb.OleDbEnumerator (class) System.Data.OleDb.OleDbEnumerator allows to enumerate OLE DB providers within the local …

  6. How do I enumerate installed OleDb providers for current …

    May 12, 2010 · You could use the OleDbEnumerator class to find out what providers are available. Not sure what the point would be, you'll just end up showing the user an empty list …

  7. OLE DB provider - René Nyffenegger

    The .NET class System.Data.OleDb.OleDbEnumerator allows to enumerate OLE DB providers within the local network. A PowerShell script that does that is found under finding OLE DB …

  8. OleDbEnumerator.GetElements Method (System.Data.OleDb)

    Retrieves a DataTable that contains information about all visible OLE DB providers. [System.Diagnostics.CodeAnalysis.RequiresDynamicCode("OleDbConnection is not AOT …

  9. C# Code: Get Excel OLEDB Provider List on Local Machine

    The code then uses the OleDbEnumerator class to retrieve the available OLEDB providers and iterates through them to add them to the DataTable. Finally, it displays the list of providers by …

  10. List installed OLE DB providers - BiG EVAL

    This article shows how to get a list of the OLE DB providers installed on a machine using PowerShell.