Commit 31535b9f by Yovan Martinez

terminado carga de datos del postulante a excepcion de sus respectivos lenguajes

parent 026d518c
package com.roshka.proyectofinal.Postulante;
import com.roshka.proyectofinal.DataBase;
import com.roshka.proyectofinal.entity.PostulanteLenguaje;
import java.sql.Connection;
import java.sql.PreparedStatement;
public class PostulanteLenguajeDao {
public static int save(PostulanteLenguaje lenguajes){
int status=0;
try{
Connection con= DataBase.getConnection();
PreparedStatement ps=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(Exception ex){ex.printStackTrace();}
return status;
}
}
package com.roshka.proyectofinal.entity;
public class PostulanteLenguaje {
private int idPostulante,idLenguaje,id;
public PostulanteLenguaje() {
}
public PostulanteLenguaje(int idPostulante) {
this.idPostulante = idPostulante;
this.idLenguaje = idPostulante;
}
public int getId(){
return id;
}
public int getIdPostulante(){
return idPostulante;
}
public void setIdPostulante(int idPostulante) {
this.idPostulante = idPostulante;
}
public int getIdLenguaje() {
return idLenguaje;
}
public void setIdLenguaje(int idLenguaje) {
this.idLenguaje = idLenguaje;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment