K
K Viltersten
I can't decide whether i should deploy the
using statement or Try-Catch-Finally
statement.
I'd prefer using because it's more compact
and automagically disposes stuff.
On the other hand, i can't be sure that the
DB is working, so i might end up with an
ugly exception, which requires an explicit
try/catch to handle...
Suggestions?
using statement or Try-Catch-Finally
statement.
I'd prefer using because it's more compact
and automagically disposes stuff.
On the other hand, i can't be sure that the
DB is working, so i might end up with an
ugly exception, which requires an explicit
try/catch to handle...
Suggestions?