Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/01/2003, 18:49
Avatar de urjose
urjose
 
Fecha de Ingreso: diciembre-2001
Mensajes: 5.286
Antigüedad: 22 años, 11 meses
Puntos: 1
Cita:
Hola Jose


El codigo que tengo es el siguiente:

<% Dim oConn,strSQL, objRS
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("\X\XX.mdb"))
strSQL = "SELECT Nombre, Apellidos FROM prueba"
Set objRS = oConn.Execute(strSQL)
%>
<TABLE BORDER=1 CELLSPACING=1 CELLPADDING=1>
<TR><TD> Nombre</TD><TD> Apellidos </TD></TR>
<%
while (not objRS.Eof)
Response.Write("<tr><td> " & objRS("Nombre") & "</td><td> " & objRS("Apellidos") & " </td></tr>")
objRS.MoveNext
wend

oConn.Close
set objRS = nothing
set oConn = nothing

%>
</table>

*** pero no conozco muy bien las instrucciones SQL "aqui se utiliza el movenext y muestra asi cada registro en el ciclo" pero solo quiero el ultimo. Me puedes ayudar.

Gracias

Lennyn B.

Cualquier duda favor de postearla aquí y no en un MP.

strSQL = "SELECT Nombre, Apellidos FROM prueba ORDER BY TUCAMPOIDENTIFICADOROFECHADEREGISTRO DESC"