I have successfully connected to an Oracle database (10g) from C# (Visual Studio 2008) by downloading and installing the client administration tools and Visual Studio 2008 on my laptop.

The installation footprint for Oracle Client tools was over 200Mb, and quite long winded.

Does anyone know what the minimum workable footprint is? I am hoping that it's a single DLL and a register command, but I have the feeling I need to install an oracle home, and set various environment variables.

I am using Oracle.DataAccess in my code.

link|improve this question

6  
As Oracle newbie, it was a nightmare also for me finding and installing all the right components and libraries I needed. I cannot understand, how Oracle couldn't provide such "mediocre" support to .NET developers... – splattne Jan 1 '09 at 12:44
feedback

8 Answers

up vote 40 down vote accepted

You need an Oracle Client to connect to an Oracle database. The easiest way is to install the Oracle Data Access Components.

To minimize the footprint, I suggest the following :

  • Use the Microsoft provider for Oracle (System.Data.OracleClient), which ships with the framework.
  • Download the Oracle Instant Client Package - Basic Lite : this is a zip file with (almost) the bare minimum. I recommend version 10.2.0.4, which is much smaller than version 11.1.0.6.0.
  • Unzip the following files in a specific folder :
    • v10 :
      • oci.dll
      • orannzsbb10.dll
      • oraociicus10.dll
    • v11 :
      • oci.dll
      • orannzsbb11.dll
      • oraociei11.dll
  • On a x86 platform, add the CRT DLL for Visual Studio 2003 (msvcr71.dll) to this folder, as Oracle guys forgot to read this...
  • Add this folder to the PATH environment variable.
  • Use the Easy Connect Naming method in your application to get rid of the infamous TNSNAMES.ORA configuration file. It looks like this : sales-server:1521/sales.us.acme.com.

This amounts to about 19Mb (v10).

If you do not care about sharing this folder between several applications, an alternative would be to ship the above mentioned DLLs along with your application binaries, and skip the PATH setting step.

If you absolutely need to use the Oracle provider (Oracle.DataAccess), you will need :

  • ODP .NET 11.1.0.6.20 (the first version which allegedly works with Instant Client).
  • Instant Client 11.1.0.6.0, obviously.

Note that I haven't tested this latest configuration...

link|improve this answer
1  
using Visual Studio 2005, I have had success without performing steps 4 or 5 – Timothy Carter Sep 16 '08 at 10:58
Is it ok to just include the dlls with your app in terms of licensing? – thecoop Dec 4 '09 at 13:18
Instant Client is licensed under the OTN Development and Distribution License (cf. oracle.com/technology/software/htdocs/client_lic.html). Which means you can freely redistribute it with your application (cf. oracle.com/technology/tech/oci/instantclient/ic-faq.html#A4379). – Mac Dec 7 '09 at 10:29
1  
Using ODAC version 11.2.0.1.2 installed solely on my development machine, I was able to deploy by copying oci.dll, Oracle.DataAccess.dll, oraociei11.dll, and OraOps11w.dll. I didn't have to install ANYTHING on the production machine, which was awesome. My development machine is Win7 x64 and I tested production on a vanilla WinXP x86 VM (.NET Framework and not much else). – Pandincus Dec 28 '10 at 18:47
Using the Instant Client Lite and copying all the DLLs to the application folder on my destination machine along with Oracle.DataAccess.dll and using an Easy Connection connection string allowed me to use the full Oracle client on my development machine and then just copy those DLLs when I deploy and the same binary works in both cases – cjbarth Sep 13 '11 at 14:19
feedback

DevArt http://www.devart.com/, formerly CoreLab (crlab.com) supplies a pure-C# Oracle client. That's a single dll, and it works fine.

link|improve this answer
That's very close to what I want, actually. Ideally, I'd like an Oracle only solution, but I am investigating this one. – Jonathan Sep 16 '08 at 9:56
And it does not require a local Oracle Client installation? – Ishmaeel Sep 16 '08 at 10:07
feedback

This way allows you to connect with ODP.net using 5 redistributable files from oracle:

Chris's blog entry: Using the new ODP.Net to access Oracle from C# with simple deployment

link|improve this answer
feedback

ODAC xcopy will get you away with about 45MB. http://www.oracle.com/technology/software/tech/windows/odpnet/index.html

link|improve this answer
feedback

I found this post on the Oracle forum very usefull as well:

How to setup Oracle Instant Client with Visual Studio

Remark: the ADO.NET team is deprecating System.Data.OracleClient so for future projects you should use ODP.NET

Reproduction:

Setup the following environment variables:

  1. make sure no other oracle directory is in your PATH
  2. set your PATH to point to your instant client
  3. set your TNS_ADMIN to point to where you tnsnames.ora file is located
  4. set your NLS_LANG
  5. set your ORACLE_HOME to your instant client

For me, I set NLS_LANG to

http://download-east.oracle.com/docs/html/A95493%5F01/gblsupp.htm#634282

I verified this was using the correct client software by using the sqlplus add-on to the instant client.

For me, I set: SET NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252

Note: before you make any changes, back up your Oracle registry key (if exist) and backup the string for any environment variables.

Read the Oracle Instant Client FAQ here

link|improve this answer
feedback

I use the method suggested by Pandicus above, on Windows XP, using ODAC 11.2.0.2.1. The steps are as follows:

  1. Download the "ODAC 11.2 Release 3 (11.2.0.2.1) with Xcopy Deployment" package from oracle.com (53 MB), and extract the ZIP.
  2. Collect the following DLLs: oci.dll (1 MB), oraociei11.dll (130 MB!), OraOps11w.dll (0.4 MB), Oracle.DataAccess.dll (1 MB). The remaining stuff can be deleted, and nothing have to be installed.
  3. Add a reference to Oracle.DataAccess.dll, add using Oracle.DataAccess.Client; to your code and now you can use types like OracleConnection, OracleCommand and OracleDataReader to access an Oracle database. See the class documentation for details. There is no need to use the tnsnames.ora configuration file, only the connection string must be set properly.
  4. The above 4 DLLs have to be deployed along with your executable.
link|improve this answer
I've found this approach to work. The obvious downside is that oraociei11.dll is now 130MB, as of v11.2 :( – Martin S Jan 24 at 0:49
feedback

Does anyone know the exact names of the files in 11_1 ver.6 and ver.7 that are necessary as they seem to be different than those above?

I am trying to deploy the 3 files, plus the CRT, plus the DataAccess dll as content in WPF application.

I don't care about re-usability since the client will only be about 19mb and rarely updated at all. I just need to have it deployed with the application so that I can use ClickOnce and not touch their registry etc.

-T

twhite @ fire . ca . gov

link|improve this answer
I updated my answer for v11. Sorry for the delay, but there is no way I could be notified of your answer. You should have left a comment... – Mac Sep 9 '09 at 8:52
feedback

closer still.

I am using Instant Client 11.1.0.6 and Oracle.DataAccess.dll included in 11.1.0.6.21.

I have copied all the .dlls and the crt dll from the instant client folder into the root of my project, set them as Content to be Copy Always.

ClickOnce is adding them to the manifest and from what I can tell they are located in the same folder as the EXE for my app is, so path should not be an issue.

I get an immediate XamlParseException on InitializeComponent() within my MainWindow.xaml file... this means nothing, and on debugging i find the inner-most exception causing it all is an OracleException stating:

"The provider is not compatible with the version of Oracle client"

From what I understand this usually means someone either has 1) multiple clients installed, 2) the wrong instant client and dataaccess.dll matched up, or 3) the client isn't being found at all.

Looking at the libraries I am using my guess is #3... any thoughts?

Two other things to note

  • It works fine on my machine both in VS.Net and when deployed to my box by ClickOnce - but I also have a full client installed so I am guessing it is using that.'
  • The connectionString in my app config looks exactly like a TNSNAMES.ORA entry rather than the uber simple EZCONNECT.

Any help you got Mac would be awesome. I'm thoroughly stuck and got some deadlines coming soon... if I can't use clickonce and this instant client, i have to dump my whole project for WinForms and Terminal Server bullshizzle.

twhite @ fire . ca . gov

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.