SqlProc
Usage
To specify that the method can be invoked as an SQL stored procedure, use the following syntax:
ClassMethod name(formal_spec) As returnclass [ SqlProc ] { //implementation }
Otherwise, omit this keyword or place the word Not immediately before the keyword.
Details
This keyword specifies that the method can be invoked as an SQL stored procedure. Only class methods (not instance methods) can be called as SQL stored procedures.
Stored procedures are inherited by subclasses.
Default
If you omit this keyword, the method is not available as an SQL stored procedure.
See Also
-
“Method Definitions” in this book
-
“Defining Stored Procedures” in Using Caché SQL
-
“Defining and Calling Methods” in Using Caché Objects
-
“Defining Method and Trigger Generators” in Using Caché Objects
-
“Introduction to Compiler Keywords” in Using Caché Objects