I'm frequently using Oracle.ManagedDataAccess.dll with PowerShell to access Oracle databases from PowerShell with the following code:
Add-Type -Path "$env:ORACLE_HOME\odp.net\managed\common\Oracle.ManagedDataAccess.dll"
This is possible by installing the oracle client up to version 19c or the ODAC up to version 12.
Now I wanted to use the oracle client 21c and I don't find a way to set this up. There are only NuGet packages and no ready to use dll anymore.
I don't have Visual Studio and I don't want to develop a new application - I just want to add that ddl into my PowerShell session to be able to connect to oracle from within than session.
Can someone point me to a "how to" or documentation that would help we? Thanks a lot.