0

I'm a newbie to connect Oracle 10g using vb.net in MS Visual 2005. Please share me in coding.

soclose
  • 2,773
  • 12
  • 51
  • 60

2 Answers2

0

You need to be more specific in your question because no one will write your project for you.

There are tons of resources on line to help you:

Using Oracle with VB.NET

Matt Wilko
  • 26,994
  • 10
  • 93
  • 143
0

If you're OK with being married to Oracle, a native driver is fastest. You tagged VS2005 so I assume you are deploying to .NET Framework 2.0. Our shop uses System.Data.OracleClient and it works fine (you will need the Oracle client installed on the target machine). This namespace, however, has been deprecated in the 4.0 framework release. The preferred way forward (which I've not tried yet) is either ODP.NET or another 3rd-party driver. This question details some of the alternatives.

Community
  • 1
  • 1
Evan Haas
  • 2,524
  • 2
  • 22
  • 34