473,387 Members | 1,790 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.

Handling of different return code correspondingly in a stored procedure

Hi All,

I have a C#.NET code as follows:

private void ScanInput_KeyPress(object sender,
System.Windows.Forms.KeyPressEventArgs e)
{
try
{
Row lRow = this.Connection.InsertScannedFile(ID);

}
catch (Exception /*lException*/)
{
textMessage.Text = "The ID value cannot be found in the system.";
}
}

void InsertScannedFile (int id)
{
this.ExecuteStoredProcedure(lReturn,
Constants.StoredProcedures.SPInsertScannedFile,
new SqlParameter("@ID",id));

return lReturn.SPInsertScannedFile[0];
}

// The stored procedure is like the follows:

CREATE PROCEDURE SPInsertScannedFile
@ID DTObjectID,

AS

IF EXISTS
(
SELECT
DistributionID
FROM
table1
WHERE
DistributionID = @ID

)
BEGIN
RAISERROR ('The file is already in the system!',16,1)
RETURN 1
END
IF NOT EXISTS
(
SELECT
FileID
FROM
table2
WHERE
FileID = @ID

)
BEGIN
RAISERROR ('The file is already scanned.',16,1)
RETURN 2
END
-- insert a new record
INSERT INTO
table2
(
ID,
Time_recorde_inserted
)
SELECT
@ID,
getdate()

-- return the details
SELECT
-- some field names
FROM
table1 INNER JOIN table2 -- etc.
WHERE
table1.DistributionID = @ID
RETURN 0
GO

--------------------------------------------------------------------------------
Could anyone advise me how to handle different return code (1 or 2)
differently from the stored procedure in the C# code? For instance, if
1 is returned, set textMessage.Text as "The file is already in the
system!" However, if 2 is returnd, set textMessage.Text as "The file is
already scanned.".

Thanks!

Dec 15 '06 #1
5 1717
Fir5tSight,

Normally you would use commandObject.ExecuteScalar. Since you have a SELECT
returning - which is a recordset/resultset if you will - you will need to
navigate thru the results. If you will need to determine whether the result
set you're reading has more than one column. If it has just one column, that
it is your return result. Otherwise, is the resultset your are returning to
your interface. There is a property called FieldCount which would answer
that question for you.

Hope it helps.

Robson

"Fir5tSight" <fi********@yahoo.comwrote in message
news:11**********************@f1g2000cwa.googlegro ups.com...
Hi All,

I have a C#.NET code as follows:

private void ScanInput_KeyPress(object sender,
System.Windows.Forms.KeyPressEventArgs e)
{
try
{
Row lRow = this.Connection.InsertScannedFile(ID);

}
catch (Exception /*lException*/)
{
textMessage.Text = "The ID value cannot be found in the system.";
}
}

void InsertScannedFile (int id)
{
this.ExecuteStoredProcedure(lReturn,
Constants.StoredProcedures.SPInsertScannedFile,
new SqlParameter("@ID",id));

return lReturn.SPInsertScannedFile[0];
}

// The stored procedure is like the follows:

CREATE PROCEDURE SPInsertScannedFile
@ID DTObjectID,

AS

IF EXISTS
(
SELECT
DistributionID
FROM
table1
WHERE
DistributionID = @ID

)
BEGIN
RAISERROR ('The file is already in the system!',16,1)
RETURN 1
END
IF NOT EXISTS
(
SELECT
FileID
FROM
table2
WHERE
FileID = @ID

)
BEGIN
RAISERROR ('The file is already scanned.',16,1)
RETURN 2
END
-- insert a new record
INSERT INTO
table2
(
ID,
Time_recorde_inserted
)
SELECT
@ID,
getdate()

-- return the details
SELECT
-- some field names
FROM
table1 INNER JOIN table2 -- etc.
WHERE
table1.DistributionID = @ID
RETURN 0
GO

--------------------------------------------------------------------------------
Could anyone advise me how to handle different return code (1 or 2)
differently from the stored procedure in the C# code? For instance, if
1 is returned, set textMessage.Text as "The file is already in the
system!" However, if 2 is returnd, set textMessage.Text as "The file is
already scanned.".

Thanks!

Dec 15 '06 #2
Hi Robson,

Thanks for answering my question!

I want to know how to pass the specific error raised in the stored
procedure to the C# calling method. For instance, how to get the C#
code to display the message, 'The file is already in the system!', when
the first check in the stored procedure fails. For another instance,
how to get the C# code to display the message, 'The file is already
scanned.', when the second check in the stored procedure fails.

I use a return code of 1 and 2 to distinguish these two different
errors raised in the stored procedure. However, I wish to know how to
get this info in the calling C# code.

-Emily

Dec 16 '06 #3
On 15 Dec 2006 09:00:30 -0800, Fir5tSight wrote:
Hi All,

I have a C#.NET code as follows:

private void ScanInput_KeyPress(object sender,
System.Windows.Forms.KeyPressEventArgs e)
{
try
{
Row lRow = this.Connection.InsertScannedFile(ID);

}
catch (Exception /*lException*/)
{
textMessage.Text = "The ID value cannot be found in the system.";
}
}

void InsertScannedFile (int id)
{
this.ExecuteStoredProcedure(lReturn,

Constants.StoredProcedures.SPInsertScannedFile,
new SqlParameter("@ID",id));

return lReturn.SPInsertScannedFile[0];
}

// The stored procedure is like the follows:

CREATE PROCEDURE SPInsertScannedFile
@ID DTObjectID,

AS

IF EXISTS
(
SELECT
DistributionID
FROM
table1
WHERE
DistributionID = @ID

)
BEGIN
RAISERROR ('The file is already in the system!',16,1)
RETURN 1
END

IF NOT EXISTS
(
SELECT
FileID
FROM
table2
WHERE
FileID = @ID

)
BEGIN
RAISERROR ('The file is already scanned.',16,1)
RETURN 2
END

-- insert a new record
INSERT INTO
table2
(
ID,
Time_recorde_inserted
)
SELECT
@ID,
getdate()

-- return the details
SELECT
-- some field names
FROM
table1 INNER JOIN table2 -- etc.
WHERE
table1.DistributionID = @ID

RETURN 0
GO

--------------------------------------------------------------------------------
Could anyone advise me how to handle different return code (1 or 2)
differently from the stored procedure in the C# code? For instance, if
1 is returned, set textMessage.Text as "The file is already in the
system!" However, if 2 is returnd, set textMessage.Text as "The file is
already scanned.".

Thanks!
Personally i'd eschew the return values approach and rewrite the procedure
to use output parameters instead. For one thing this would make extending
the logic easier as well as keeping the application logic in the
application.

So after executing the query i'd check the return value and then based on
that throw the appropriate exception within the .NET application
--
Bits.Bytes
http://bytes.thinkersroom.com
Dec 16 '06 #4
You shouldn't be sending back error message text from the stored procedure -
send back a numeric return code, put a corresponding enumeration in your
application code and throw an exception if appropriate. As was mentioned in
another reply, use output parameters instead of "return codes". In general,
you should always avoid putting application logic in the data layer.
Further, you should avoid passing back string values to indicate what are
really application errors. In other words, nothing "went wrong" in the data
layer; rather you received a result that indicates something "went wrong" in
the application.

"Fir5tSight" <fi********@yahoo.comwrote in message
news:11**********************@f1g2000cwa.googlegro ups.com...
Hi All,

I have a C#.NET code as follows:

private void ScanInput_KeyPress(object sender,
System.Windows.Forms.KeyPressEventArgs e)
{
try
{
Row lRow = this.Connection.InsertScannedFile(ID);

}
catch (Exception /*lException*/)
{
textMessage.Text = "The ID value cannot be found in the system.";
}
}

void InsertScannedFile (int id)
{
this.ExecuteStoredProcedure(lReturn,
Constants.StoredProcedures.SPInsertScannedFile,
new SqlParameter("@ID",id));

return lReturn.SPInsertScannedFile[0];
}

// The stored procedure is like the follows:

CREATE PROCEDURE SPInsertScannedFile
@ID DTObjectID,

AS

IF EXISTS
(
SELECT
DistributionID
FROM
table1
WHERE
DistributionID = @ID

)
BEGIN
RAISERROR ('The file is already in the system!',16,1)
RETURN 1
END
IF NOT EXISTS
(
SELECT
FileID
FROM
table2
WHERE
FileID = @ID

)
BEGIN
RAISERROR ('The file is already scanned.',16,1)
RETURN 2
END
-- insert a new record
INSERT INTO
table2
(
ID,
Time_recorde_inserted
)
SELECT
@ID,
getdate()

-- return the details
SELECT
-- some field names
FROM
table1 INNER JOIN table2 -- etc.
WHERE
table1.DistributionID = @ID
RETURN 0
GO

--------------------------------------------------------------------------------
Could anyone advise me how to handle different return code (1 or 2)
differently from the stored procedure in the C# code? For instance, if
1 is returned, set textMessage.Text as "The file is already in the
system!" However, if 2 is returnd, set textMessage.Text as "The file is
already scanned.".

Thanks!

Dec 17 '06 #5
Hi Karch,

Thanks for the advice! I'll use a parameter to return the error code
from the stored procedure, and then handle the exception based on the
error code.

I won't return any textual string from the stored procedure.

-Emily

Dec 18 '06 #6

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

Similar topics

2
by: xAvailx | last post by:
I have a requirement that requires detection of rows deleted/updated by other processes. My business objects call stored procedures to create, read, update, delete data in a SQL Server 2000 data...
9
by: dtwilliams | last post by:
OK, i'm trying to do some error checking on stored procedures and am following the advise in Erland Sommarskog's 'Implementing Error Handling with Stored Procedures' document. Can anybody help...
0
by: Rhino | last post by:
I've written several Java stored procedures now (DB2 V7.2) and I'd like to write down a few "best practices" for reference so that I will have them handy for future development. Would the...
5
by: Jurgen Defurne | last post by:
I am currently designing an application which should be accessible from different interfaces. For this I like to be using stored procedures to process the contents of form submissions and dialog...
9
by: serge | last post by:
/* Subject: How to build a procedure that returns different numbers of columns as a result based on a parameter. You can copy/paste this whole post in SQL Query Analyzer or Management Studio...
0
by: Fir5tSight | last post by:
Hi All, I have a C#.NET code as follows: private void ScanInput_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) { try { Row lRow = this.Connection.InsertScannedFile(ID);
1
by: pob | last post by:
>From a form I have some code that calls 4 modules frmMain 1 mod 2 mod 3 mod 4 mod If mod 1 experiences an error the error handling works fine within mod 1 and writes out the error to a...
1
by: | last post by:
I have an application that has a presentation later, business layer, and data layer. All three projects have their own exception policy, the "UI Policy", "BL Policy", "DL Policy", all of which...
4
by: barmatt80 | last post by:
I am stumped on the error reporting with sql server. I was told i need to return @SQLCode(code showing if successful or not) and @ErrMsg(and the message returned). I am clueless on this. I...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: 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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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.