I have two questions.
1) Should you always use a using statement on a connection? So, I would use it on the connection and then another one on a reader within the c
You should always use a using statement when an object implements IDisposable. This includes connections.
using
IDisposable
It will create two nested try{}finally{} blocks.
try{}finally{}