CALL Statement

Description

In CUBRID, the CALL statement is used to call a method defined in the database. Both table and record methods can be called by the CALL statement.

Syntax

CALL method_call [ ; ]

method_call :

method_name ( [ arg_value [ {, arg_value }_ ] ] ) ON call_target [ to_variable ]

method_name ( call_target [, arg_value [ {, arg_value }_ ] ] ) [ to_variable ]

arg_value :

any CSQL expression

call_target :

an object-valued expression

to_variable :

INTO variable

TO variable