Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 28, 2019 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/58fc6e0175d641b8354e6fd72967bd7d to your computer and use it in GitHub Desktop.
Save parzibyte/58fc6e0175d641b8354e6fd72967bd7d to your computer and use it in GitHub Desktop.
async insertar(nombre, precio) {
let resultados = await conexion.query(`insert into productos
(nombre, precio)
values
($1, $2)`, [nombre, precio]);
return resultados;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment