persistent class %TSQL.sys.procedure
extends %Persistent
property class
as %String;
property description
as %String;
property execute
as %String(MAXLEN=4096);
property idPROC
as %String;
property idSCHEMA
as %String;
property interface
as %Integer;
interface
-2 function procedure with a return value that may return result sets
-1 function procedure without a return value that may return result sets
0 function procedure without a return value, no result sets
1 query (single result set)
2 function with a return value, no result sets
property name
as %String;
property procedure
as %String;
property schema
as %String;
index (ID on idSCHEMA,idPROC) [IdKey];