Advertisement
Draconk

Untitled

Nov 13th, 2014
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.17 KB | None | 0 0
  1.     public String getTablaDir() throws SQLException {
  2.        
  3.         Connection con = DriverManager.getConnection("jdbc:mysql://localhost:33331","DAF", "DTI");
  4.         Statement stmt = con.createStatement();
  5.        
  6.         StringBuilder sb = new StringBuilder();
  7.         String sql;
  8.         int contador = 0;
  9.         sql = "SELECT * FROM dticomun.svtdir";
  10.         ResultSet rs = stmt.executeQuery(sql);
  11.         sb.append("<table id='tablaDirecciones' class='table tbPersonas table-bordered table-striped table-condensed'>"
  12.                 + "<thead>"
  13.                     + "<tr>"
  14.                          + "<th>"
  15.                             + "Codigo"
  16.                           + "</th>"
  17.                          + "<th>"
  18.                             + "Tipo Direccion"
  19.                          + "</th>"
  20.                          
  21.                     + "</tr>"
  22.                 + "</thead>"
  23.                 + "<tbody>");
  24.         while (rs.next()) {
  25.            if ((contador % 2) == 1) {
  26.                         sb.append("<tr data-toggle='collapse' data-target='#direccionAction" + rs.getInt("oid_tdir")
  27.                                 + "' id='dir-" + rs.getInt("oid_tdir") + "' class='accordion-toggle zebra1 dir'>");
  28.                     } else {
  29.                         sb.append("<tr data-toggle='collapse' data-target='#direccionAction" + rs.getInt("oid_tdir")
  30.                                 + "' id='dir-" + rs.getInt("oid_tdir") + "' class='accordion-toggle zebra0 dir'>");
  31.                     }
  32.                     sb.append("<td> " + rs.getString("cod_tdir") + "</td>"
  33.                     +"<td> " + rs.getString("tipo_direccion") + "</td>"
  34.                     +"</tr>");
  35.                     sb.append("<tr class='resultado'>");
  36.                     sb.append("<td colspan='9' class='hiddenRow'>");
  37.                     sb.append("<div class='accordion-body collapse' id='direccionAction" + rs.getInt("oid_tdir") + "'></div>");
  38.                     sb.append("</td></tr>");
  39.             contador++;
  40.         }
  41.         sb.append("</tbody>"
  42.                 + "</table>");
  43.         stmt.close();
  44.         con.close();
  45.         rs.close();
  46.         return sb.toString();
  47.   }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement