Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/08/2003, 04:12
Acostag
 
Fecha de Ingreso: noviembre-2002
Ubicación: Monterrey N.L. Mexico
Mensajes: 141
Antigüedad: 22 años, 6 meses
Puntos: 0
Pregunta Fechas con Access..

alguien me puede ayudar con las Fechas y el Access. ???

este es mi codigo..

<%
Response.Buffer = true
Dim miconexion, mirecordset, mirecordset2, micomando, micomando2
Set miconexion = Server.CreateObject("ADODB.Connection")
miconexion.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="& Server.MapPath("/Benavides/DB/Benavides.mdb")
Set micomando = Server.CreateObject("adodb.command")

micomando.ActiveConnection = miconexion
micomando.CommandText = "Select * From Captura_Bitacora where Fecha_pro = '" & Request("DIA") &" ' order by Id"
Set mirecordset =micomando.Execute
While Not mirecordset.EOF
%>

Help.... Help..

Saludos
Luis.R.acosta