Subject Re: [Firebird-Architect] Named arguments for SP
Author Dmitry Yemanov
"Adriano dos Santos Fernandes" <adrianosf@...> wrote:
>
> execute procedure sp with x = 1, y = 2;

Or just:

execute procedure sp (x = 1, y = 1)

> execute procedure sp with y = 2;

This call is invalid without a default value defined for X and Y being the
first parameter.


Dmitry