BootcampDao.java 7.49 KB
Newer Older
1 2 3 4 5
package com.roshka.proyectofinal.bootcamp;

import com.roshka.proyectofinal.DataBase;
import com.roshka.proyectofinal.entity.Bootcamp;

6 7 8
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
9 10 11 12 13 14 15

public class BootcampDao {

    public static int save(Bootcamp b){
        int status=0;

        try{
16
            System.out.println(b.getId_profesor());
17 18
            Connection con= DataBase.getConnection();
            PreparedStatement ps=con.prepareStatement(
19
                    "insert into bootcamp (id_lenguaje,id_profesor,fecha_inicio,fecha_fin,descripcion,imagen,titulo,activo) values (?,?,?::date,?::date,?,?,?,?)");
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
            ps.setInt(1,b.getId_lenguaje());
            ps.setInt(2,b.getId_profesor());
            ps.setString(3,b.getFecha_inicio());
            ps.setString(4,b.getFecha_fin());
            ps.setString(5,b.getDescripcion());
            ps.setString(6,b.getImagen());
            ps.setString(7,b.getTitulo());
            ps.setBoolean(8,b.getActivo());

            status=ps.executeUpdate();

            con.close();
        }catch(Exception ex){ex.printStackTrace();}

        return status;
    }

37 38 39 40 41
    public static int update(Bootcamp b){
        int status=0;
        try{
            Connection con= DataBase.getConnection();
            PreparedStatement ps=con.prepareStatement(
42
                    "update bootcamp set id_lenguaje=?,id_profesor=?,fecha_inicio=?::date,fecha_fin=?::date,descripcion=?,titulo=?,activo=? where id=?");
43 44 45 46 47 48 49 50 51 52 53
            ps.setInt(1,b.getId_lenguaje());
            ps.setInt(2,b.getId_profesor());
            ps.setString(3,b.getFecha_inicio());
            ps.setString(4,b.getFecha_fin());
            ps.setString(5,b.getDescripcion());
            ps.setString(6,b.getTitulo());
            ps.setBoolean(7,b.getActivo());
            ps.setInt(8,b.getId());

            status=ps.executeUpdate();

54
            System.out.println(status);
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
            con.close();
        }catch(Exception ex){ex.printStackTrace();}

        return status;
    }

    public static List<Bootcamp> listar(){
        ArrayList<Bootcamp> list = new ArrayList<>();
        String sql = "select a.id, a.fecha_inicio, a.fecha_fin, a.descripcion, a.titulo,\n" +
                "a.activo, b.nombre_lenguaje, c.nombre, c.apellido \n" +
                "from bootcamp a\n" +
                "inner join lenguaje b\n" +
                "on a.id_lenguaje=b.id\n" +
                "inner join profesor c\n" +
                "on a.id_profesor=c.id";

        try{
            Connection con= DataBase.getConnection();
            PreparedStatement ps=con.prepareStatement(sql);
            ResultSet rs = ps.executeQuery();


            while(rs.next()){
                Bootcamp boot = new Bootcamp();

                boot.setId(rs.getInt("id"));
                boot.setActivo(rs.getBoolean("activo"));
                boot.setDescripcion(rs.getString("descripcion"));
                boot.setTitulo(rs.getString("titulo"));
                boot.setFecha_fin(rs.getString("fecha_fin"));
                boot.setFecha_inicio(rs.getString("fecha_inicio"));
                boot.setNombre_profesor(rs.getString("nombre"));
                boot.setApellido_profesor(rs.getString("apellido"));
                boot.setNombre_lenguaje(rs.getString("nombre_lenguaje"));

                list.add(boot);
            }

            con.close();
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
        return list;
    }

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
    public static int delete(int id){
        int status=0;
        try{
            Connection con=DataBase.getConnection();
            PreparedStatement ps=con.prepareStatement("delete from bootcamp where id=?");
            ps.setInt(1,id);
            status=ps.executeUpdate();

            con.close();
        }catch(Exception e){e.printStackTrace();}

        return status;
    }


115 116 117 118 119 120 121 122
    public static Bootcamp getBootcampById(int id){
        Bootcamp b=new Bootcamp();

        try{
            Connection con=DataBase.getConnection();
            PreparedStatement ps=con.prepareStatement("select * from bootcamp where id=?");
            ps.setInt(1,id);
            ResultSet rs=ps.executeQuery();
123
            System.out.println();
124 125 126 127 128 129 130
            if(rs.next()){
                b.setId(rs.getInt("id"));
                b.setActivo(rs.getBoolean("activo"));
                b.setDescripcion(rs.getString("descripcion"));
                b.setTitulo(rs.getString("titulo"));
                b.setFecha_fin(rs.getString("fecha_fin"));
                b.setFecha_inicio(rs.getString("fecha_inicio"));
131 132
                b.setId_profesor(rs.getInt("id_profesor"));
                b.setId_lenguaje(rs.getInt("id_lenguaje"));
133 134 135 136 137 138 139
                b.setImagen(rs.getString("imagen"));
            }
            con.close();
        }catch(Exception ex){ex.printStackTrace();}

        return b;
    }
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
    public static List<Bootcamp> filtrar(String lenguaje){
        ArrayList<Bootcamp> list = new ArrayList<>();
//        String sql = "select a.id, a.titulo, a.descripcion, a.fecha_inicio, a.fecha_fin, b.nombre_lenguaje, c.nombre,c.apellido, a.activo\n" +
//                "\tfrom bootcamp a\n" +
//                "\tinner join lenguaje b on b.id=a.id_lenguaje\n" +
//                "\tinner join profesor c on c.id=a.id_profesor\n" +
//                "\twhere a.fecha_inicio ilike ? and\n" +
//                "\ta.fecha_fin ilike ? and b.nombre_lenguaje ilike ?";

        try{
            Connection con= DataBase.getConnection();
            //PreparedStatement ps=con.prepareStatement("");
//            PreparedStatement ps = con.prepareStatement("select a.id, a.titulo, a.descripcion, cast (a.fecha_inicio AS varchar) as fecha_inicio, cast (a.fecha_fin AS varchar) as fecha_fin, b.nombre_lenguaje, c.nombre,c.apellido, a.activo\n" +
//                    "\tfrom bootcamp a\n" +
//                    "\tinner join lenguaje b on b.id=a.id_lenguaje\n" +
//                    "\tinner join profesor c on c.id=a.id_profesor\n" +
//                    "\twhere a.fecha_inicio = ? and\n" +
//                    "\ta.fecha_fin = ? and b.nombre_lenguaje = ?");
            PreparedStatement ps = con.prepareStatement("select a.id, a.titulo, a.descripcion, cast (a.fecha_inicio AS varchar) as fecha_inicio, cast (a.fecha_fin AS varchar) as fecha_fin, b.nombre_lenguaje, c.nombre,c.apellido, a.activo\n" +
                    "\tfrom bootcamp a\n" +
                    "\tinner join lenguaje b on b.id=a.id_lenguaje\n" +
                    "\tinner join profesor c on c.id=a.id_profesor\n" +
                    " where b.nombre_lenguaje = ?");

//            ps.setString(1,  fecha_inicio);
//            ps.setString(2,  fecha_fin);
            ps.setString(1,  lenguaje);
            ResultSet rs = ps.executeQuery();

            while(rs.next()){
                Bootcamp boot = new Bootcamp();

                boot.setId(rs.getInt("id"));
                boot.setActivo(rs.getBoolean("activo"));
                boot.setDescripcion(rs.getString("descripcion"));
                boot.setTitulo(rs.getString("titulo"));
                boot.setFecha_fin(rs.getString("fecha_fin"));
                boot.setFecha_inicio(rs.getString("fecha_inicio"));
                boot.setNombre_profesor(rs.getString("nombre"));
                boot.setApellido_profesor(rs.getString("apellido"));
                boot.setNombre_lenguaje(rs.getString("nombre_lenguaje"));

                list.add(boot);
            }

            con.close();
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
        return list;
    }
191
}