
 Rank: Guest Groups: Guest
Joined: 9/17/2007 Posts: 11,670 Points: -1,200
|
Date parsed: 07/01/2008 01:38:46 Date: Mon, 7 Jan 2008 06:38:46 -0500
"Techeek" <techeek@hotmail.com> wrote in message news:BE772633-534B-484D-99CA-58673E292732@microsoft.com... >I am trying to connect to Oracle through ASP. But I am getting the >following > error : > > > > Microsoft OLE DB Provider for Oracle (0x80004005) > 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. > > > > I have tried many connection strings, but with all it is giving me the > same > error. > > > > Please help.
You connect to a database with a provider such as Oracle through ADO.net not ASP.net.
That message means that the workstation must have the Oracle client driver installed on the workstation, so that you can use the Oracle Namespace. The driver should match the Oracle client driver version number that's deployed to a test or production Web server, as an example, otherwise, your application will be using the wrong driver and subject to not work because of this.
|