I was playing around with PowerShell and came across a CmdLet that I thought could be interesting to us database people, the Get-OdbcDriver CmdLet.
Like most CmdLets, Get-OdbcDriver is very straightforward to use.
For instance, you need only do (I’m using “| Format-Table” to make the returned data more compact for the purposes of trying to keep this article shorter in overall length, but it isn’t strictly necessary):
Get-OdbcDriver | Format-Table
and then you’ll get returned a complete listing of all the OBDC drivers on the PC, such as
Name Platform Attribute
---- -------- ---------
Driver da Microsoft para arquivos tex... 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Driver do Microsoft Access (*.mdb) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Driver do Microsoft dBase (*.dbf) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Driver do Microsoft Excel(*.xls) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Driver do Microsoft Paradox (*.db ) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft Access Driver (*.mdb) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft Access-Treiber (*.mdb) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft dBase Driver (*.dbf) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft dBase-Treiber (*.dbf) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft Excel Driver (*.xls) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft Excel-Treiber (*.xls) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft ODBC for Oracle 32-bit {APILevel, FileUsage, Driver, ConnectFunctions...}
Microsoft Paradox Driver (*.db ) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft Paradox-Treiber (*.db ) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft Text Driver (*.txt; *.csv) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
Microsoft Text-Treiber (*.txt; *.csv) 32-bit {APILevel, DriverODBCVer, FileUsage, Driver...}
SQL Server 32-bit {APILevel, FileUsage, Driver, ConnectFunctions...}
Microsoft Access Driver (*.mdb, *.accdb) 32-bit {Driver, APILevel, FileExtns, FileUsage...}
Microsoft Excel Driver (*.xls, *.xlsx... 32-bit {Driver, APILevel, FileExtns, FileUsage...}
Microsoft Access Text Driver (*.txt, ... 32-bit {Driver, APILevel, FileExtns, FileUsage...}
ODBC Driver 17 for SQL Server 32-bit {Driver, APILevel, FileUsage, Setup...}
SQL Server 64-bit {APILevel, FileUsage, Driver, ConnectFunctions...}
ODBC Driver 17 for SQL Server 64-bit {Driver, APILevel, FileUsage, Setup...}
Continue reading →