I am a little confused about this. I have worked with SQL Server
databases extensively and can make a connection as simple as below:
.NET 1.1
SqlConnection cn = new SqlConnection();
cn = new SqlConnection("server=localhost;database=test;uid=xxxx;password=xxxxx;");
cn.Open();
Now, that I am trying to work with Oracle databases, I run into
problems. I read in .NET 2.0 that the same SqlConnection class can be
used to connect to most relational databases. What do I need to do to
the code to do this From my readings in .NET 1.0, the following had to
be downloaded from MS in order to access an Oracle db:
.NET Framework Data Provider for Oracle
Is this still a requirement with .NET 2.0
Searched over the internet and most examples deal with SQL Server!!
Any help is appreciated!

Connect to Oracle Database programmatically using .NET 2.0
Jurgen
rgallazzi
"The .NET Framework Data Provider for Oracle is an add-on component to the MicrosoftR .NET Framework version 1.0 that provides access to an Oracle database using the Oracle Call Interface (OCI) as provided by Oracle Client software."
Is this still needed in .NET 2.0. Can anyone answer this question
Thanks!
bhernacki
qtvali
VS2005 comes with the Microsoft Oracle provider (System.Data.OracleClient) you do not need to download it.
To use it in you program you need to add it to your references. Just go to add references and under the .Net tab select System.Data.OracleClient.
You won't see any new components in the toolbox.
Dion
smilyFace
Sorry for the novice questions, I am coming back to .NET after a few years of J2EE coding.
Thanks.
Alberto Grasso
iffi raja
www.connectionstrings.com