Link to home
Start Free TrialLog in
Avatar of Onkar
OnkarFlag for India

asked on

Connecting to Sybase using ADO.NET in VB.NET

Hi Experts,

I Started working on VB.NET recently. Can anyone will help me in getting the connection to Sybase & ORACLE database with ADO.NET. Also which are the drivers I need to have to connect to the Sybase & ORACLE database.

Waiting for the Answer.

Thanks in Advance
Onkar
ASKER CERTIFIED SOLUTION
Avatar of Leprosy
Leprosy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of soniva
soniva

For Oracle connections, the easiest way is to download the Microsoft .Net Managed Driver,

http://www.microsoft.com/downloads/details.aspx?FamilyID=4f55d429-17dc-45ea-bfb3-076d1c052524&DisplayLang=en

Set the reference in the project and use as a usual System.Data.OracleClient object.

For Sybase, Download the latest patch (EBF) and set a reference like this:

using iAnywhere.Data.AsaClient;

HTH.



Ivar.