Advertisement
econz

Firebird - Execute Block com Parâmetros e Retorno

Feb 20th, 2015
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.15 KB | None | 0 0
  1. EXECUTE block (
  2.    x DOUBLE PRECISION = :X,
  3.    y DOUBLE PRECISION = :Y
  4. )
  5. RETURNS (
  6.    MULT DOUBLE PRECISION
  7. )
  8. AS
  9. BEGIN
  10.   MULT = x*y;
  11.   suspend;
  12. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement