Execute command in TOracleScript

Is the statement below executed in a TOracleScript? It seems it gets ignored.


Code:
execute schema.some_procedure
I know that I can write


Code:
begin
      schema.some_procedure;
    end;
I just want to be sure that the former is not supported.

Thanx,

--
Petros
 
EXECUTE is not supported. Only the following non-SQL commands are supported:

CONNECT Username/Password@Database
DEFINE Variable=Value
EXIT
PAUSE Message
PROMPT Message
QUIT
REMARK Comment
SET Option ON|OFF (Option = ECHO | EXITONERROR | FEEDBACK | SCAN | TERMOUT)
SET COLWIDTH Value
UNDEFINE Variable
 
Back
Top