Programación VB para escribir el programa de función de búsqueda en PDF
while (rs.next()) {
Barras bar = new Bars();
bar.setId(rs.getLong("id") );
bar.setName(rs.getString("nombre"));
bar.setType(rs.getInt("tipo"));
bar.setCreatorId(rs.getLong("creator_id"));
resultList.add(bar);
}