packagecom.roshka.proyectofinal.Postulante;importcom.roshka.proyectofinal.DataBase;importcom.roshka.proyectofinal.entity.PostulanteLenguaje;importjava.sql.Connection;importjava.sql.PreparedStatement;publicclassPostulanteLenguajeDao{publicstaticintsave(PostulanteLenguajelenguajes){intstatus=0;try{Connectioncon=DataBase.getConnection();PreparedStatementps=con.prepareStatement("insert into postulante_lenguaje(id_postulante,id_lenguaje) values (?,?)");ps.setInt(1,lenguajes.getIdPostulante());ps.setInt(2,lenguajes.getIdLenguaje());status=ps.executeUpdate();con.close();}catch(Exceptionex){ex.printStackTrace();}returnstatus;}}