Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const { Client } = require('pg');
- const conectionPG = {
- user: 'postgres',
- password: 'maxhito',
- host: 'localhost', // Localhost es MI COMPUTADOR
- database: 'postgres',
- port: '5432',
- };
- const crudPG = new Client(conectionPG);
- crudPG.connect();
- // Confección de una consulta general
- function hacerSelect(tabla) {
- crudPG.query('select * from ' + tabla)
- .then(respuesta => {
- console.log(respuesta.rows)
- //crudPG.end();
- })
- .catch( error => {
- console.log("Hicimos la morición")
- console.log(error)
- //crudPG.end()
- });
- }
- // Confección de un delete para la tabla en la que está trabajando
- function eliminar(nombre) {
- crudPG.query("delete from gatito where nombre='"+ nombre + "'")
- .then(respuesta => {
- console.log("Se eliminó correctamente")
- //crudPG.end();
- })
- .catch( error => {
- console.log("Hicimos la morición")
- console.log(error)
- //crudPG.end()
- });
- }
- // LLAMADA A LAS FUNCIONES
- hacerSelect('gatito');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement