Reputation: 1253
I have Visual Studio 2015 Enterprise and I want to get a connection to an Oracle database. I've installed the 32bit tools: http://www.oracle.com/technetwork/topics/dotnet/utilsoft-086879.html
and the 64 bit tools: http://www.oracle.com/technetwork/database/windows/downloads/index-090165.html
When I try to add a data connection in Visual Studio, I don't see ODP.NET managed driver or the OPD.NET Unmanaged driver in the data provider list.
Any help would be appreciated.
Upvotes: 1
Views: 2984
Reputation: 500
ODP.NET's installer hasn't been updated to Visual Studio 2015 as of today (check the date on this post, the latest currently is 12.1.0.2.1/Dec 2014). The actual driver appears to work fine, it is the installer which is the problem as far as I've been able to tell.
I have two workarounds for the installer, neither of them are pleasant.
Workaround #1:
Workaround #2: This requires that Visual Studio 2013 is NOT installed, 2015 only. We're going to trick the ODP.net installer into installing onto 2015 for us.
Use at your own risk, but I've used both methods and it works. I will reinstall when a new ODP.net is released (since this method could have artifacts), but broadly speaking right now it is either this or just not using 2015 with ODP.net.
Upvotes: 1