Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created March 20, 2017 01:11
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/56aa7c6b81e17c0fcaf9f60f89d8e84f to your computer and use it in GitHub Desktop.
Save vmussak/56aa7c6b81e17c0fcaf9f60f89d8e84f to your computer and use it in GitHub Desktop.
sql.request()
.input('Nome', 'Gustavo')
.input('NomeDaMae', 'Joana')
.execute('BuscarUsuario', (err, recordset) => {
if(err)
return console.log(err);
console.log(recordset);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment