Java Web desde cero en Netbeans ☁️[08.- JSP y MySQL leer registros de la tabla]
En este tutorial vamos a jalar los registros de nuestra tabla empleados ademas de agregar las librerías de mysql en nuestro proyecto.
Codigo: https://github.com/programadornovato/javaWeb/commit/8e3b7cc8ad543beaa55b3bb4496ead5a4b35bd7e
<%@page import="java.sql.*"%> <%@page import="com.mysql.jdbc.Driver"%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <title>Lista de empleados</title> </head> <body> <% Connection con = null; Statement st = null; ResultSet rs = null; %> <div class="container mt-5"> <div class="row"> <div class="col-sm"> <table class="table table-striped"> <thead> <tr> <th scope="col">ID</th> <th scope="col">Nombre</th> <th scope="col">Direccion</th> <th scope="col">Telefono</th> </tr> </thead> <tbody> <% try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/jsp?user=eugenio&password=123456"); st = con.createStatement(); rs = st.executeQuery("SELECT * FROM `empledos`;"); while (rs.next()) { %> <tr> <th scope="row"><%= rs.getString(1)%></th> <td><%= rs.getString(2)%></td> <td><%= rs.getString(3)%></td> <td><%= rs.getString(4)%></td> </tr> <% } } catch (Exception e) { out.print("error mysql "+e); } %> </tbody> </table> </div> </div> </div> </body> </html>
Curso de Java de 0 a 100: https://www.youtube.com/playlist?list=PLCTD_CpMeEKTT-qEHGqZH3fkBgXH4GOTF
? Esta lista de reproducción: https://www.youtube.com/playlist?list=PLCTD_CpMeEKRAgcBmPee0Wjx5HsJ0nb0L
Codigos en gdrive: https://drive.google.com/file/d/10uLG9o2oDV-qB32G4kMIpzXgLCiUYaYz/view?usp=sharing
Gracias por apoyar este canal: https://www.patreon.com/programadornovato?fan_landing=true
? Facebook: https://facebook.com/ProgramadorNovatoOficial
? Twitter: https://twitter.com/programadornova
? Linkedin: https://www.linkedin.com/in/programadornovato/
? Instagram: https://www.instagram.com/programadornovato/