News

Learn how to use TRY...CATCH blocks to control the flow of stored procedures in SQL Server. Find out their benefits, limitations, and best practices.
Before SQL Server 2005, the only practical way to trap errors in SQL was using the old-fashioned @@error system variable. Although this is still supported, in this ...
2 How to use TRY-CATCH blocks in T-SQL stored procedures. One of the most common and effective ways to handle errors in T-SQL stored procedures is to use TRY-CATCH blocks.
Well in some organizations, the IT department wants all interaction with the server to be done through Stored Procedure. This adds a level of risk management and makes the DBAs feel better. So today, ...
Existing Frameworks. I looked at some already existing JDBC frameworks 2 - 4, but they either didn't provide the exception handling flexibility I wanted or they were overly complicated to use.The JDBC ...