Skip to content

Instantly share code, notes, and snippets.

@krescruz
Created July 21, 2018 00:09
Show Gist options
  • Save krescruz/af77ce3ab13f36092507b6d00b30c374 to your computer and use it in GitHub Desktop.
Save krescruz/af77ce3ab13f36092507b6d00b30c374 to your computer and use it in GitHub Desktop.
IBM i Create store procedure for calling CLP (Programming Control language)
CREATE PROCEDURE MYLIB.SPNAME(
IN @P1 CHAR(10),
)
LANGUAGE CL
NOT DETERMINISTIC
NO SQL
EXTERNAL NAME MYLIB.MYCL
PARAMETER STYLE GENERAL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment