Skip to content

Instantly share code, notes, and snippets.

Created May 18, 2016 14:06
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 anonymous/6d2b9d68c057482996d7f0c8b6427809 to your computer and use it in GitHub Desktop.
Save anonymous/6d2b9d68c057482996d7f0c8b6427809 to your computer and use it in GitHub Desktop.
public void TabelaFuncionario()
{
try
{
DS bd = new DS();//My dataset where is my store procedure from my sql server database
BDfuncionarios = new DataTable();
BDfuncionarios.Clear();
//here i need to send the a variable to the store procedure and it will retrieve me data and i need to put that data into my BDfuncionarios
}
catch (Exception r)
{
MessageBox.Show(r.Message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment