Skip to content

Instantly share code, notes, and snippets.

@vmussak
Last active March 15, 2017 03:27
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 vmussak/28264b4859eb41772df17063382dbfaf to your computer and use it in GitHub Desktop.
Save vmussak/28264b4859eb41772df17063382dbfaf to your computer and use it in GitHub Desktop.
let parameters = {
nome: 'Mateus',
nomeDaMae: 'Neide'
};
pg.request()
.input(parameters, 'p')
.execute('autenticacao.BuscarUsuario', (err, data) => {
if (err)
return console.log(err);
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment