Visual Studio 2008 and Oracle 10g

At work, we just started developing in C # .NET using VS2008, and we need to connect to Oracle databases.

The problem is that we are still using Oracle 10g servers, and Oracle provides four installation options:

  • Install Oracle 10g DAC with Tools for VS2005 / VS2003
  • Install Oracle 11g DAC with Tools for VS2008
  • Install Oracle 10g DAC
  • Install Oracle 11g DAC

http://www.oracle.com/technology/software/tech/windows/odpnet/index.html

We would rather use a 10g DAC, but with VS2008 tools ...

I am wondering if anyone can find out about any problems that we may encounter using the 11g DACs in the 10g database - are the DACs compatible?

So far, this is normal, and we can connect and make queries with it, but I have little experience working with Oracle databases, thanks for any pointers!

+3
source share
2 answers

I have been using Visual Studio 2008 with the Oracle 11g DAC (with tools) working with Oracle 10gR2 for many months now without any real problems.

+3
source

In my case, Oracle 10.g works with Visual Studio 2008 (3.5 framework), but when I added unit testing, it failed. I also tried using the ORA connection string method, but there is an error

0
source

Source: https://habr.com/ru/post/1730055/


All Articles