Closed
Description
Initially reported in SQLPage as sqlpage/SQLPage#655
Currently, sqlparser supports stored procedure calls with
EXECUTE MyProcedure;
However, the Microsoft SQL Server syntax does support passing parameters to stored procedures with a simple whitespace between the procedure name and arguments:
EXECUTE MyProcedure 'argument 1', 'argument 2';
It also supports named arguments
EXECUTE MyProcedure @my_first_arg = 'argument 1', @my_second_arg = 'argument 2';
Related, but different issues:
Metadata
Metadata
Assignees
Labels
No labels