Bonjour,
j'ai un probléme de connexion à la base de donnée suivant

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.

/test/include/db.asp, line 8
comment le réglé sacaht que le code est:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
 
<%
  strDataSource = "xxxxx"
  strUser = "aaa"
  strPassword = "ccccc"
 
  strConnexion = "Provider=msdaora; Data Source=" & strDataSource & "; User Id=" & strUser & "; Password=" & strPassword
  Set objConnexion = CreateObject("ADODB.Connection")
  objConnexion.Open strConnexion
%>
Merci d'avance