Tipo de error:
ADODB.Connection (0x800A0E7A)
No se encontró el proveedor especificado. Es posible que no esté instalado correctamente.
/Página Web/servidor.asp, línea 8
<html>
<head>
<title> Servidor </title>
</head>
<body>
<%
Set oCon = Server.CreateObject("ADODB.Connection")
oCon.open("Provider=oraOLEDB.Oracle;DataSource=BDO RACLE;UserID=scott;Password=tiger;")
Dim oCon,oCom,oRec
Set oCom = Server.CreateObject("ADODB.Command")
Set oRec = Server.CreateObject ("ADODB.RecordSet")
oCom.CommandText = "SELECT LOGIN, PASSWORD FROM USUARIOS WHERE LOGIN = '" & Request.Form("login") & "'AND PASSWORD = '" & Request.Form("password") & "' AND NIVEL = '" &Request.Form("nivel") & "'"
oCom.ActiveConnection = oCon
Set oRec = oCom.Execute
Response.write(oRec("LOGIN"))
Response.write(oRec("PASSWORD"))
oRec.Close
oCon.Close
Set oCon = Nothing
Set oCom = Nothing
Set oRec = Nothing
%>
</body>
</html>
Muchas gracias.
