Buenas tardes compañeros, estoy intentando mostrar una serie de datos en una web a través de una consulta SQL, en este caso, una imagen.
Mi codigo SQL es:
public class Consultas extends ConexionDB{
public static ResultSet Novedades () throws SQLException{
Statement st = conex.createStatement();
ResultSet rs = null;
try {
String cadSQL = "select * from productos where id_familia='1'";
rs = st.executeQuery(cadSQL);
}catch (SQLException e) {
} finally {
conex.close();
}
return rs;
}
}
Mi código JSP es:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@page import="java.sql.ResultSet"%>
<%@page import="conexion.Consultas"%>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/estilos.css" />
<link rel="stylesheet" type="text/css" href="css/tituloH1.css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SISTEMASFS</title>
</head>
<body>
<div id="contenido">
<%
ResultSet rs=Consultas.Novedades();
String imagen=rs.getString("imagen");
String texto=rs.getString("nombre");
String id=rs.getInt("id");
String ruta="novedades";
try {
while (rs.next()){
}
} catch (SQLException e){
} finally {
rs.close();
}
%>
</div>
</body>
</html>
En JAVA puro lo se hacer, pero en JSP no se como mostrarlo...¿Alguna idea?