You are here: Re: Error handling in stored procedure AND checking « MsSQL Server « IT news, forums, messages
Re: Error handling in stored procedure AND checking

Posted by barmatt80 on 01/04/08 18:49

On Jan 3, 5:25 pm, "Plamen Ratchev" <Pla...@SQLStudio.com> wrote:
> SQL Server reports that the stored procedure executed successfully because
> there are no errors. Just because your SQL statement attempts to update
> non-existing SSN, it does not mean you will get an error. You have to handle
> this using application logic, not to expect SQL Server to report an error.
>
> If you really do want to get an error when invalid SSN update is attempted,
> then you can add something like the code below at the end of your stored
> procedure, just after the UPDATE statement:
>
> IF @@ROWCOUNT = 0
> RAISERROR ('Invalid SSN.', 16, 1)
>
> The @@ROWCOUNT function returns the number of rows affected by the last
> statement. Then if 0 rows have been updated it means the SSN is invalid and
> RAISERROR will force an error.
>
> However, based on the requirements that you need to return @SQLCode and
> @ErrMsg, you are probably looking for something like this:
>
> 1). Add two OUTPUT parameters to the stored procedure for @@SQLCode and
> @ErrMsg:
> @SQLCode CHAR(1) OUTPUT, @ErrMsg VARCHAR(20) OUTPUT
>
> 2) Inside the stored procedure, just after the UPDATE check if rows have
> been updated and set those two parameters:
> IF @@ROWCOUNT = 0
> SELECT @SQLCode = 'E', @ErrMsg = 'Invalid SSN.'
>
> 3) Then when you declare those two parameters and pass to the stored
> procedure with the OUTPUT keyword.
>
> This is just one example on how you can return the error code and message,
> based on your application architecture different variations can be used. You
> can probably go only with error message as the error code is redundant, but
> not sure about your specs.
>
> HTH,
>
> Plamen Ratchevhttp://www.SQLStudio.com

thanks for the help, i understand what and how you are doing it and
had the output variables in my stored procedure at one time, but the
if statement was my downfall. I showed the guy that told me to create
the procedure and said it was coming along but wanted me to setup if
there was an error(i am guessing any error) that he wants an email
generated with the error sent to him. I am at a complete standstill
till i figure that one out.

Thanks for the help I do appreciate it.

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация