Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void insertarInscripcion(InscripcionDTO dto) throws SQLException, ClassNotFoundException {
- // Crear un query que me permita ingresar los datos del DTO a la tabla correspondiente
- String insertarInscripcion = "INSERT INTO inscripcion (nombre, telefono, id_curso, id_forma_pago) "
- + " VALUES ("
- + "'" + dto.getNombre() + "'" + ", "
- + dto.getCelular() + ", "
- + "'" + dto.getIdCurso() + "'" + ", "
- + "'" + dto.getIdFormaDePago() + "'" + ")";
- System.out.println(insertarInscripcion);
- try {
- // Hacer la conexión a la base de datos y posteriormente ejecutar el insert
- Class.forName("org.postgresql.Driver");
- Connection conexion = null;
- String url = "jdbc:postgresql://127.0.0.1:5432/postgres";
- conexion = DriverManager.getConnection(url, "postgres", "maxhito");
- PreparedStatement stmt = conexion.prepareStatement(insertarInscripcion);
- stmt.executeUpdate();
- System.out.println("Registro Ingresado");
- } catch (ClassNotFoundException | SQLException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement