473,387 Members | 1,493 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Another error handling question - best practice?

Hello,

I am looking for guidance on best practices to incorporate effective and complete error handling in an application written in VB.NET. If I have the following function in a class module (note that this class module represents the business layer of code NOT the gui layer):

Public Function Test(ByVal Parm1 As Integer, ByVal Parm2 As Integer) As SqlDataReader
' Declare the SQL data layer class
Dim oSQL As New SqlService(ConnectionString)

' Add the parameters to the command object
oSQL.AddParameter("@Parm1", SqlDbType.SmallInt, 0, Parm1, ParameterDirection.Input)
oSQL.AddParameter("@Parm2", SqlDbType.SmallInt, 0, Parm2, ParameterDirection.Input)

' Run the stored procedure and return a datareader
Return oSQL.RunProcReader("SQLStoredProcedureName")
End Function

which is calling the following library function (data access layer of code) which can/could throw an exception (which I believe already has valid error handling in it):

Public Function RunProcReader(ByVal sProcName As String) As SqlDataReader
' Check to make sure we have all the data necessary for a connection
If Not IsValidConnectionString() Then
Throw New InvalidConnectionException("Invalid SQL connection string: " & ConnectionString)
End If

Dim dr As SqlDataReader '//--- Create a new sqlDataReader
Dim oCmd As SqlCommand = New SqlCommand '//--- Create a new SqlCommand
Dim oCn As SqlConnection = Nothing '//--- Declare the SqlConnection
Dim oSqlParameter As SqlParameter = Nothing '//--- Declare a SqlParameter
Dim oP As Parameter = Nothing '//--- Declare a Parameter

'Get an enumerator for the parameter array list
Dim oEnumerator As IEnumerator = m_oParmList.GetEnumerator()

Try
'Prepare connection to the database
oCn = Connect()

With oCmd
.Connection = oCn
.CommandText = sProcName
.CommandType = CommandType.StoredProcedure
End With

'Add the parameters to the command
AddParameters(oEnumerator, oCmd)

' Open the connection
oCn.Open()

' Execute the datareader, and close the connection
dr = oCmd.ExecuteReader(CommandBehavior.CloseConnection )
Catch ex As Exception
Throw
Finally
Disconnect(oCn)
End Try

'Get the output parameter values if there were no errors
GetOutputParameterValues(oCmd)

'Return the DataReader
Return dr
End Function

How would we add error handling into the Test function above to be able to gracefully handle the errors encountered in the data access layer (RunProcReader) AND to gracefully send the error back to the gui calling program? Do we just simply enclose everything in a try catch, and then also enclose the call to the Test function (from the GUI layer) within a try catch block so that if an error is encountered we can gracefully handle the presentation?

Anyone care to provide us with ideas as to what you are doing in similar circumstances?

Jim
Nov 20 '05 #1
4 7590
Hi James,

Methods in your business layer should only be catching errors if they can
deal with the error internally (not very common) or they can add valuable
information to they error on it's way up to the UI layer. For example,
RunProcReader should not have a catch block (just a try...finally) because
it is not adding any information that the handling method can use, you are
just adding extra overhead without adding any extra value.

What you could do instead is have RunProcReader catch the exception and then
throw a custom exception that has properties like the name of the stored
procedure and the connection string. If you do this make sure to include the
original exception as the InnerException.

There's a good chapter on exception handling in Jeffrey Richter's "Applied
Microsoft.NET Framework Programming" (Microsoft Press) .

Hope this helps.

--
Rob Windsor
G6 Consulting
Toronto, Canada

"James Radke" <jr*****@wi.rr.com> wrote in message
news:e1**************@TK2MSFTNGP10.phx.gbl...
Hello,

I am looking for guidance on best practices to incorporate effective and
complete error handling in an application written in VB.NET. If I have the
following function in a class module (note that this class module represents
the business layer of code NOT the gui layer):

Public Function Test(ByVal Parm1 As Integer, ByVal Parm2 As Integer) As
SqlDataReader
' Declare the SQL data layer class
Dim oSQL As New SqlService(ConnectionString)

' Add the parameters to the command object
oSQL.AddParameter("@Parm1", SqlDbType.SmallInt, 0, Parm1,
ParameterDirection.Input)
oSQL.AddParameter("@Parm2", SqlDbType.SmallInt, 0, Parm2,
ParameterDirection.Input)

' Run the stored procedure and return a datareader
Return oSQL.RunProcReader("SQLStoredProcedureName")
End Function

which is calling the following library function (data access layer of code)
which can/could throw an exception (which I believe already has valid error
handling in it):

Public Function RunProcReader(ByVal sProcName As String) As
SqlDataReader
' Check to make sure we have all the data necessary for a
connection
If Not IsValidConnectionString() Then
Throw New InvalidConnectionException("Invalid SQL connection
string: " & ConnectionString)
End If

Dim dr As SqlDataReader '//---
Create a new sqlDataReader
Dim oCmd As SqlCommand = New SqlCommand '//---
Create a new SqlCommand
Dim oCn As SqlConnection = Nothing '//---
Declare the SqlConnection
Dim oSqlParameter As SqlParameter = Nothing '//---
Declare a SqlParameter
Dim oP As Parameter = Nothing '//---
Declare a Parameter

'Get an enumerator for the parameter array list
Dim oEnumerator As IEnumerator = m_oParmList.GetEnumerator()

Try
'Prepare connection to the database
oCn = Connect()

With oCmd
.Connection = oCn
.CommandText = sProcName
.CommandType = CommandType.StoredProcedure
End With

'Add the parameters to the command
AddParameters(oEnumerator, oCmd)

' Open the connection
oCn.Open()

' Execute the datareader, and close the connection
dr = oCmd.ExecuteReader(CommandBehavior.CloseConnection )
Catch ex As Exception
Throw
Finally
Disconnect(oCn)
End Try

'Get the output parameter values if there were no errors
GetOutputParameterValues(oCmd)

'Return the DataReader
Return dr
End Function

How would we add error handling into the Test function above to be able to
gracefully handle the errors encountered in the data access layer
(RunProcReader) AND to gracefully send the error back to the gui calling
program? Do we just simply enclose everything in a try catch, and then also
enclose the call to the Test function (from the GUI layer) within a try
catch block so that if an error is encountered we can gracefully handle the
presentation?

Anyone care to provide us with ideas as to what you are doing in similar
circumstances?

Jim
Nov 20 '05 #2
Rob,

If you only use the Try.. Finally without a catch wouldn't my program
"abend" without the catch as soon as a problem is encountered?

Jim
"Rob Windsor" <rw******@NO.MORE.SPAM.bigfoot.com> wrote in message
news:OD**************@TK2MSFTNGP10.phx.gbl...
Hi James,

Methods in your business layer should only be catching errors if they can
deal with the error internally (not very common) or they can add valuable
information to they error on it's way up to the UI layer. For example,
RunProcReader should not have a catch block (just a try...finally) because
it is not adding any information that the handling method can use, you are
just adding extra overhead without adding any extra value.

What you could do instead is have RunProcReader catch the exception and then throw a custom exception that has properties like the name of the stored
procedure and the connection string. If you do this make sure to include the original exception as the InnerException.

There's a good chapter on exception handling in Jeffrey Richter's "Applied
Microsoft.NET Framework Programming" (Microsoft Press) .

Hope this helps.

--
Rob Windsor
G6 Consulting
Toronto, Canada

"James Radke" <jr*****@wi.rr.com> wrote in message
news:e1**************@TK2MSFTNGP10.phx.gbl...
Hello,

I am looking for guidance on best practices to incorporate effective and
complete error handling in an application written in VB.NET. If I have the following function in a class module (note that this class module represents the business layer of code NOT the gui layer):

Public Function Test(ByVal Parm1 As Integer, ByVal Parm2 As Integer) As SqlDataReader
' Declare the SQL data layer class
Dim oSQL As New SqlService(ConnectionString)

' Add the parameters to the command object
oSQL.AddParameter("@Parm1", SqlDbType.SmallInt, 0, Parm1,
ParameterDirection.Input)
oSQL.AddParameter("@Parm2", SqlDbType.SmallInt, 0, Parm2,
ParameterDirection.Input)

' Run the stored procedure and return a datareader
Return oSQL.RunProcReader("SQLStoredProcedureName")
End Function

which is calling the following library function (data access layer of code) which can/could throw an exception (which I believe already has valid error handling in it):

Public Function RunProcReader(ByVal sProcName As String) As
SqlDataReader
' Check to make sure we have all the data necessary for a
connection
If Not IsValidConnectionString() Then
Throw New InvalidConnectionException("Invalid SQL connection string: " & ConnectionString)
End If

Dim dr As SqlDataReader '//---
Create a new sqlDataReader
Dim oCmd As SqlCommand = New SqlCommand '//---
Create a new SqlCommand
Dim oCn As SqlConnection = Nothing '//---
Declare the SqlConnection
Dim oSqlParameter As SqlParameter = Nothing '//---
Declare a SqlParameter
Dim oP As Parameter = Nothing '//---
Declare a Parameter

'Get an enumerator for the parameter array list
Dim oEnumerator As IEnumerator = m_oParmList.GetEnumerator()

Try
'Prepare connection to the database
oCn = Connect()

With oCmd
.Connection = oCn
.CommandText = sProcName
.CommandType = CommandType.StoredProcedure
End With

'Add the parameters to the command
AddParameters(oEnumerator, oCmd)

' Open the connection
oCn.Open()

' Execute the datareader, and close the connection
dr = oCmd.ExecuteReader(CommandBehavior.CloseConnection )
Catch ex As Exception
Throw
Finally
Disconnect(oCn)
End Try

'Get the output parameter values if there were no errors
GetOutputParameterValues(oCmd)

'Return the DataReader
Return dr
End Function

How would we add error handling into the Test function above to be able to
gracefully handle the errors encountered in the data access layer
(RunProcReader) AND to gracefully send the error back to the gui calling
program? Do we just simply enclose everything in a try catch, and then also enclose the call to the Test function (from the GUI layer) within a try
catch block so that if an error is encountered we can gracefully handle the presentation?

Anyone care to provide us with ideas as to what you are doing in similar
circumstances?

Jim

Nov 20 '05 #3
"James Radke" <jr*****@wi.rr.com> wrote in
news:uC*************@TK2MSFTNGP10.phx.gbl:
Rob,

If you only use the Try.. Finally without a catch wouldn't my program
"abend" without the catch as soon as a problem is encountered?

No, it should be caught by an exception handler higher up the call stack.
If there is no exception handler higher up, then it would probably "abend"

Chris
Nov 20 '05 #4

No. When an exception occurs .NET will walk the call stack until it finds
the first method that has an enclosing catch block. Because many of your
business objects will not be catching errors but still need to ensure
resources are released you will see about a 10-1 ratio of try...finally to
try...catch blocks. In the UI the ratio of try...catch is considerably
higher.

I took a quick look and I found this article at the link below which
discusses error handling in a little bit more detail. I'm sure there are
other free resources out there as well.

http://msdn.microsoft.com/msdnmag/is...s/default.aspx

Rob

"James Radke" <jr*****@wi.rr.com> wrote in message
news:uC*************@TK2MSFTNGP10.phx.gbl...
Rob,

If you only use the Try.. Finally without a catch wouldn't my program
"abend" without the catch as soon as a problem is encountered?

Jim
"Rob Windsor" <rw******@NO.MORE.SPAM.bigfoot.com> wrote in message
news:OD**************@TK2MSFTNGP10.phx.gbl...
Hi James,

Methods in your business layer should only be catching errors if they can deal with the error internally (not very common) or they can add valuable information to they error on it's way up to the UI layer. For example,
RunProcReader should not have a catch block (just a try...finally) because it is not adding any information that the handling method can use, you are just adding extra overhead without adding any extra value.

What you could do instead is have RunProcReader catch the exception and then
throw a custom exception that has properties like the name of the stored
procedure and the connection string. If you do this make sure to include

the
original exception as the InnerException.

There's a good chapter on exception handling in Jeffrey Richter's "Applied Microsoft.NET Framework Programming" (Microsoft Press) .

Hope this helps.

--
Rob Windsor
G6 Consulting
Toronto, Canada

"James Radke" <jr*****@wi.rr.com> wrote in message
news:e1**************@TK2MSFTNGP10.phx.gbl...
Hello,

I am looking for guidance on best practices to incorporate effective and
complete error handling in an application written in VB.NET. If I have

the
following function in a class module (note that this class module

represents
the business layer of code NOT the gui layer):

Public Function Test(ByVal Parm1 As Integer, ByVal Parm2 As Integer) As
SqlDataReader
' Declare the SQL data layer class
Dim oSQL As New SqlService(ConnectionString)

' Add the parameters to the command object
oSQL.AddParameter("@Parm1", SqlDbType.SmallInt, 0, Parm1,
ParameterDirection.Input)
oSQL.AddParameter("@Parm2", SqlDbType.SmallInt, 0, Parm2,
ParameterDirection.Input)

' Run the stored procedure and return a datareader
Return oSQL.RunProcReader("SQLStoredProcedureName")
End Function

which is calling the following library function (data access layer of

code)
which can/could throw an exception (which I believe already has valid

error
handling in it):

Public Function RunProcReader(ByVal sProcName As String) As
SqlDataReader
' Check to make sure we have all the data necessary for a
connection
If Not IsValidConnectionString() Then
Throw New InvalidConnectionException("Invalid SQL

connection
string: " & ConnectionString)
End If

Dim dr As SqlDataReader '//---
Create a new sqlDataReader
Dim oCmd As SqlCommand = New SqlCommand '//---
Create a new SqlCommand
Dim oCn As SqlConnection = Nothing '//---
Declare the SqlConnection
Dim oSqlParameter As SqlParameter = Nothing '//---
Declare a SqlParameter
Dim oP As Parameter = Nothing '//---
Declare a Parameter

'Get an enumerator for the parameter array list
Dim oEnumerator As IEnumerator = m_oParmList.GetEnumerator()

Try
'Prepare connection to the database
oCn = Connect()

With oCmd
.Connection = oCn
.CommandText = sProcName
.CommandType = CommandType.StoredProcedure
End With

'Add the parameters to the command
AddParameters(oEnumerator, oCmd)

' Open the connection
oCn.Open()

' Execute the datareader, and close the connection
dr = oCmd.ExecuteReader(CommandBehavior.CloseConnection )
Catch ex As Exception
Throw
Finally
Disconnect(oCn)
End Try

'Get the output parameter values if there were no errors
GetOutputParameterValues(oCmd)

'Return the DataReader
Return dr
End Function

How would we add error handling into the Test function above to be able

to gracefully handle the errors encountered in the data access layer
(RunProcReader) AND to gracefully send the error back to the gui calling
program? Do we just simply enclose everything in a try catch, and then

also
enclose the call to the Test function (from the GUI layer) within a try
catch block so that if an error is encountered we can gracefully handle

the
presentation?

Anyone care to provide us with ideas as to what you are doing in similar
circumstances?

Jim


Nov 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: aaj | last post by:
Hi all I have an automated application, that runs in the middle of the night. If certain 'non system' errors occur (things like malformed files, missing files etc..), I send an automatic Email...
9
by: Mark Twombley | last post by:
Hi, I'm just getting back into C++ and had a question about the best practice for assigning error numbers. I have been working in VB for sometime now and there you would start assigning error...
1
by: annie | last post by:
Hi all, I have recently ported my Access 2000 app to SQL Server, keeping the Access client as the front end using linked tables. I am also using triggers on my SQL tables to trap orphan...
4
by: aaj | last post by:
Hi all I have an automated application, that runs in the middle of the night. If certain 'non system' errors occur (things like malformed files, missing files etc..), I send an automatic Email...
4
by: Sandy | last post by:
Hello - I read an interesting article on the web wherein the author states he doesn't handle too many errors at page level, but handles them at the application level. He further goes on to show...
3
by: Stefan Johansson | last post by:
Hi all I'am moving from Visual Foxpro and have a question regarding "best practice" error handling in vb .net. In VFP I have always used a "central" error handling object in order to have a...
7
by: Garth Wells | last post by:
I'm trying to create a DAL and am wondering what's the proper way to handle errors in this Insert method. public string Insert() { Database db = DatabaseFactory.CreateDatabase(); string...
5
by: csgraham74 | last post by:
Hi guys, Basically i have been developing in dotnet for a couple of years but ive had a few issues in regards to error handling. For example - I have a class that i call passing in a stored...
0
by: acnx | last post by:
I have an ntier application. I am trying to determine what is the best practice for handing errors in a datagrid. My datagrids are able to add, update and delete data. I am using a...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.