Ever find yourself writing code like this? // look up connection string // open sql connection // execute command // DO SOMETHING WITH RESULT SET // close data reader // close command // close connection From time to time I see patterns like this, where...