I want to connect to an oracle server using ADO.
Can any body tell me how to connect using connect string
Server name is neural1
db instance name is @orcl
user id = bew
password = bew
Please Help me quickly.
Printable View
I want to connect to an oracle server using ADO.
Can any body tell me how to connect using connect string
Server name is neural1
db instance name is @orcl
user id = bew
password = bew
Please Help me quickly.
this is what I came up with quickly...no warranties expressed or implied :)
Provider=MSDAORA;User ID=bew;Password=bew;Data Source=neural1;
you can possibly add this to the end of it if the above does not get you to the correct database (or instance)
Initial Catalog=@orcl
sorry, I'm no oracle guru, but maybe that'll do it....
later!