Where's my Oracle namespace?

  • Thread starter Thread starter Arnie Mauer
  • Start date Start date
A

Arnie Mauer

Using VS 2005 Beta1, C#. If I type:

using system.data.

There's no Oracle namespace in the completion list. Does it come with
VS or does it have to be installed with the Oracle client (using 10G)?

Thanks
- Arnie
 
using.System.Data.OracleClient;

Make sure your using version 1.1 of frameworks

If this is a windows app you will need to add a reference to your project.

To see if the OralceClient assembly is installed on your machine you can
looked in C:\WINDOWS\Assembly (Win2K use WINNT instead)

Hope this helps
 
Back
Top