IBM Informix Embedded SQLJ User's Guide
Chapter 4: The Embedded SQLJ Language
Contents
Index
Calling SPL Routines and Functions
You can call a Stored Procedure Language (SPL) procedure by using the EXECUTE PROCEDURE statement. For example:
#sql { EXECUTE PROCEDURE
proc_name
(:
arg_name
) };
You can call a stored function by using the EXECUTE FUNCTION statement. For example:
#sql num = {EXECUTE FUNCTION(
func_name
(
func_arg
) ) };
IBM Informix Embedded SQLJ User's Guide
, Version 1.0
Copyright © 1999, IBM Corporation. All rights reserved.