Advertisement
ADL_Rodrigo_Silva

Untitled

Feb 25th, 2022
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.11 KB | None | 0 0
  1.     public void insertarInscripcion(InscripcionDTO dto) throws SQLException, ClassNotFoundException {
  2.        
  3.         // Crear un query que me permita ingresar los datos del DTO a la tabla correspondiente
  4.         String insertarInscripcion = "INSERT INTO inscripcion (nombre, telefono, id_curso, id_forma_pago) "
  5.                 + " VALUES ("
  6.                 + "'" + dto.getNombre() + "'" + ", "
  7.                 + dto.getCelular() + ", "
  8.                 + "'" + dto.getIdCurso() + "'" + ", "
  9.                 + "'" + dto.getIdFormaDePago() + "'" + ")";
  10.        
  11.         System.out.println(insertarInscripcion);
  12.        
  13.         try {
  14.             // Hacer la conexión a la base de datos y posteriormente ejecutar el insert
  15.             Class.forName("org.postgresql.Driver");
  16.             Connection conexion = null;
  17.            
  18.             String url = "jdbc:postgresql://127.0.0.1:5432/postgres";
  19.             conexion = DriverManager.getConnection(url, "postgres", "maxhito");
  20.            
  21.             PreparedStatement stmt = conexion.prepareStatement(insertarInscripcion);
  22.             stmt.executeUpdate();
  23.            
  24.             System.out.println("Registro Ingresado");
  25.            
  26.         } catch (ClassNotFoundException | SQLException e) {
  27.             // TODO Auto-generated catch block
  28.             e.printStackTrace();
  29.         }
  30.                        
  31.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement