Firebird 2.5 supports the execution of code blocks surrounded by the execute block statement , try this:
set term ^ ; EXECUTE BLOCK AS DECLARE VARIABLE var_SecondsOfTime INTEGER; BEGIN SELECT 1 from RDB$DATABASE into var_SecondsOfTime ; END ^ set term ; ^
I returned select, because I am sure that it is impossible to execute an empty block, try to do it yourself by deleting select.

Edit My original choice was invalid for the block, I added a sentence in to collect the result. I have never used Firebird Maestro, but now it works fine on isql, as shown.
source share