Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/11/2004, 17:28
izzy28
 
Fecha de Ingreso: noviembre-2004
Mensajes: 67
Antigüedad: 20 años, 2 meses
Puntos: 0
igual me muestra solo los "usuarios no registrados", pero los usuarios registrados no me muestra nada, me podrias ayudar aca esta el codigo mas ordenado:

<html>
<body>
<%@ page import="java.io.*,java.util.*,java.net.*,java.sql. *" %>
<%
String usu = request.getParameter("NOMBRE");
String cla = request.getParameter("CLAVE");
Connection conn = null;
Statement st = null;
ResultSet rs = null;
try {
Class.forName("com.mysql.jdbc.Driver").newInstance ();
conn = DriverManager.getConnection("jdbc:mysql://localhost/base","admin","pass");
st = conn.createStatement();
rs = st.executeQuery("select * from employees where usuario='" + usu + "'");
if(!rs.next())
{
out.println("Usuario no registrado");
return;
}
do {
rs.getString("nombre");
rs.getString("apellido");
}
while(rs.next());
}
catch (Exception ex)
{
ex.printStackTrace();
}
finally {
if (rs != null) rs.close();
if (st != null) st.close();
if (conn != null) conn.close();
}
%>
</body>
</html>