Advertisement
ADL_Rodrigo_Silva

Untitled

Jun 22nd, 2022
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. const { Client } = require('pg');
  3.  
  4. const conectionPG = {
  5.     user: 'postgres',
  6.     password: 'maxhito',
  7.     host: 'localhost',  // Localhost es MI COMPUTADOR
  8.     database: 'postgres',
  9.     port: '5432',
  10. };
  11.  
  12. const crudPG = new Client(conectionPG);
  13. crudPG.connect();
  14.  
  15. // Confección de una consulta general
  16. function hacerSelect(tabla) {
  17.     crudPG.query('select * from ' + tabla)
  18.         .then(respuesta => {
  19.             console.log(respuesta.rows)
  20.             //crudPG.end();
  21.         })
  22.         .catch( error => {
  23.             console.log("Hicimos la morición")
  24.             console.log(error)
  25.             //crudPG.end()
  26.         });
  27. }
  28.  
  29. // Confección de un delete para la tabla en la que está trabajando
  30. function eliminar(nombre) {
  31.     crudPG.query("delete from gatito where nombre='"+ nombre + "'")
  32.         .then(respuesta => {
  33.             console.log("Se eliminó correctamente")
  34.             //crudPG.end();
  35.         })
  36.         .catch( error => {
  37.             console.log("Hicimos la morición")
  38.             console.log(error)
  39.             //crudPG.end()
  40.         });
  41. }
  42.  
  43.  
  44. // LLAMADA A LAS FUNCIONES
  45.  
  46. hacerSelect('gatito');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement