0

Is it possible to create a dynamic value that can hold any data type value in stored procedures in firebird? Something like:

SET TERM ^ ;

CREATE PROCEDURE something(variable_a dynamic)
RETURNS (status int)
 AS
BEGIN
-- ....
END^

SET TERM ; ^

Thank you.

1 Answers1

0

No, this is not possible in Firebird. The exact data type must be known at procedure compile time.

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197