Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

oracle connection Provider cannot be found. It may not be properly installed.

Status
Not open for further replies.

baran121

Programmer
Sep 8, 2005
337
0
0
TR
Hi,
i am new about Oracle, on my computer i can connect ORACLE database. But in another computer i have a problem following
"oracle connection Provider cannot be found. It may not be properly installed."

if you can help me i ll be apprsuade.

i use visual basic 6.
connection string:

With cnnt
.CursorLocation = adUseClient
.ConnectionString = "Provider=OraOLEDB.Oracle;Data Source=" & server_adi & "/" & db_adi & ";User ID=" & user & ";Password=" & pass
.Open
End With

my computer is windows 7 ultimate.

other computer which i cannot connect to oracle database is windows server 2008 R2 standart service pack1.

tkank you.

 
i found solution.

str = "Driver={Microsoft ODBC for Oracle};"
str = str & "Server=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=" & hostname & ")(PORT=" & portname & "))(CONNECT_DATA=(SID=LIVE)));Uid=" & user & ";Pwd=" & pass & ";"

With cnnt
.CursorLocation = adUseClient
.ConnectionString = str
.Open
End With
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top