Skip to content

Instantly share code, notes, and snippets.

@vmussak
Last active March 15, 2017 03:33
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/40f1580bcdfd0865e59480539b87bd3e to your computer and use it in GitHub Desktop.
Save vmussak/40f1580bcdfd0865e59480539b87bd3e to your computer and use it in GitHub Desktop.
Exemplo de chamada da procedure com os parametros em ordem
pg.request()
.input('Rafael') //pNome
.input('Magally') //pNomeDaMae
.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