Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created October 25, 2012 07:11
Show Gist options
  • Save mookid8000/3951079 to your computer and use it in GitHub Desktop.
Save mookid8000/3951079 to your computer and use it in GitHub Desktop.
SQL datareader
using(var conn = new SqlConnection("server=.;initial catalog=minDatabase;integrated security=sspi"))
{
conn.Open();
using(var cmd = conn.CreateCommand())
{
cmd.CommandText = "select something from whatever";
using(var reader = cmd.ExecuteReader())
{
while(reader.Read())
{
var myInt = (int)reader["something"];
// do the funky shit ;)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment