SQL 2012 keyword "throw" unrecognized
Posted: Mon 10 Jun 2013 09:22
We are using SQL Complete 4.0.78.1. Correct SQL 2012 code below gives error "Unexpected symbol 'throw'" in SQL Complete.
Could you please fix this? This is very annoying, because we use the keyword "throw" very often.
Thanks in advance! Stefan.
Code: Select all
begin try
raiserror('Error!', 16, 1);
end try
begin catch
throw;
end catch;
Thanks in advance! Stefan.