0
Tuesday
12
Jul-2005
When connection to a database, or even when executing queries, inserts, updates, and so forth, one should ALWAYS attempt to catch the SQL exceptions apart from the regular catching. This provides more detailed feedback than the regular exception handling:
Try 'SQL processing here Catch objError As SqlException 'this will catch all errors on the SQL side (SELECT, INSERT, UPDATE, etc.) 'note that this does not handle errors opening and closing the database MessageBox.Show(objError.Number + ": " + objerror.Message) Catch objError As Exception 'errors when opening and closing the database are handled here MessageBox.Show(objError.ToString + ":" + objError.Message) End Try
No Response to ".Net HowTo - Database Connection Errorhandling"
Be the first to comment! :)