Hi --
I have a developer who is trying to call an rpt using OLE DB through ASP on a CE 9 box. The call works on one server but not another. The error is :"Microsoft OLE DB Provider for Oracle error '80004005'". Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation. Provider is unable to function until these components are installed.
The code piece is : Dim oConn
Dim rs
Dim sConnString
dim sProcString
sConnString = "Provider=MSDAORA.1;Data Source=ffa_d;User ID=ffa_owner;Password=ffa_owner"
response.Write "< br>< input type='text' size='120' value='" & sConnString & "' id='text'1 name='text'1>< br>
response.write "Attempting to open connection.....< br>"set oConn = Server.CreateObject("adodb.connection"
set rs = Server.CreateObject("adodb.recordset"
oConn.Open sConnString
response.write "< br>Connection Succeeded< br>"
End of source
We have tried to uninstall/install Oracle 8.17 client several times without luck.
Any thoughts ???
Thanks. Grant
I have a developer who is trying to call an rpt using OLE DB through ASP on a CE 9 box. The call works on one server but not another. The error is :"Microsoft OLE DB Provider for Oracle error '80004005'". Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation. Provider is unable to function until these components are installed.
The code piece is : Dim oConn
Dim rs
Dim sConnString
dim sProcString
sConnString = "Provider=MSDAORA.1;Data Source=ffa_d;User ID=ffa_owner;Password=ffa_owner"
response.Write "< br>< input type='text' size='120' value='" & sConnString & "' id='text'1 name='text'1>< br>
response.write "Attempting to open connection.....< br>"set oConn = Server.CreateObject("adodb.connection"
set rs = Server.CreateObject("adodb.recordset"
oConn.Open sConnString
response.write "< br>Connection Succeeded< br>"
End of source
We have tried to uninstall/install Oracle 8.17 client several times without luck.
Any thoughts ???
Thanks. Grant