You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error Description
The VSCode editor shows the error "Incorrect syntax near 'ELSE'. Expecting CATCH, CONVERSATION, or TRY" when analyzing a SQL stored procedure that contains IF...ELSE blocks with a THROW statement inside a TRY...CATCH block. However, the SQL code executes correctly on the SQL Server.
Steps to Reproduce the Error
Open VSCode and connect to a SQL Server.
Create a new .sql file or open an existing one.
Copy and paste the following generic SQL code into the file:
CREATE PROCEDURE dbo.MyProcedure
@parameter INT
AS
BEGIN
SET NOCOUNT ON;
BEGIN TRY
IF @parameter = 1
BEGIN
-- Code for case 1
SELECT 1;
END
ELSE IF @parameter = 2
BEGIN
-- Code for case 2
THROW 50000, 'Error in case 2', 1; -- THROW statement
END
ELSE
BEGIN
-- Code for default case
SELECT 3;
END;
END TRY
BEGIN CATCH
SELECT ERROR_MESSAGE() AS ErrorMessage;
END CATCH
END;
Observe the error that appears in the VSCode editor.
Expected Behavior
The VSCode editor should analyze the SQL code correctly and not display any syntax errors, as the code is valid and executes without problems on the SQL Server.
Actual Behavior
The VSCode editor displays the error "Incorrect syntax near 'ELSE'. Expecting CATCH, CONVERSATION, or TRY" on the line containing the ELSE keyword.
The text was updated successfully, but these errors were encountered:
Error Description
The VSCode editor shows the error "Incorrect syntax near 'ELSE'. Expecting CATCH, CONVERSATION, or TRY" when analyzing a SQL stored procedure that contains IF...ELSE blocks with a THROW statement inside a TRY...CATCH block. However, the SQL code executes correctly on the SQL Server.
Steps to Reproduce the Error
Expected Behavior
The VSCode editor should analyze the SQL code correctly and not display any syntax errors, as the code is valid and executes without problems on the SQL Server.
Actual Behavior
The VSCode editor displays the error "Incorrect syntax near 'ELSE'. Expecting CATCH, CONVERSATION, or TRY" on the line containing the ELSE keyword.
The text was updated successfully, but these errors were encountered: