persistent class %Dictionary.CompiledQuery
extends %Persistent, %Dictionary.CompiledQueryQuery
parameter SQLENABLED = 1;
property Cardinality
as %Integer;
Cardinality
property ClientInfo
as %CacheString;
ClientInfo
property ClientName
as %CacheString;
ClientName
property ColCaptions
as %CacheString;
ColCaptions
property ColNames
as %CacheString;
ColNames
property CompilerGenerated
as %Boolean;
CompilerGenerated
property Description
as %CacheString;
Specifies a description of the query.
property ExtendedInfo
as %CacheString;
ExtendedInfo
property Final
as %Boolean;
Specifies that subclasses cannot override the definition of the query.
property FormalSpec
as %CacheString;
Specifies the list of arguments passed to the Execute method. Each argument is of the format [&|*][:][=] where & means pass-by-reference and * means output-only.
property FormalSpecParsed
as %CacheString;
FormalSpecParsed
property Id
as %Integer;
Id
property InheritedId
as %Boolean;
InheritedId
property Internal
as %Boolean;
If true, then do not display this item in automatic documentation.
property KeywordError
as %Boolean;
KeywordError
property KeywordModified
as %Boolean;
KeywordModified
relationship Methods
as %Dictionary.CompiledQueryMethod [ Inverse = parent,Cardinality = children ];
Method
property Name
as %Dictionary.CacheIdentifier;
The name of the query.
property NotInheritable
as %Boolean;
Specifies that this query is not inherited by subclasses.
property Origin
as %CacheString;
Origin
property Parameters
as array of %CacheString;
Parameter
property ParmNames
as %CacheString;
ParmNames
property Private
as %Boolean;
Deprecated.
property SequenceNumber
as %Integer;
SequenceNumber
property SoapBindingStyle
as %CacheString;
Specifies what type of SOAP invocation is used for a web method. This keyword is ignored for non-web methods.
property SoapBodyUse
as %CacheString;
Specifies what kind of SOAP encoding is used for the inputs and outputs of a web method. This keyword is ignored for non-web methods.
property SoapNameSpace
as %CacheString;
SoapNameSpace
property SqlName
as %CacheString;
If this query is projected as an SQL stored procedure, then this name is used as the name of the stored procedure.
property SqlProc
as %Boolean;
Specifies that the query can be invoked as an SQL stored procedure.
property SqlQuery
as %CacheString;
Specifies an SQL statement to be used for an SQL-based query.
property SqlQueryGen
as %CacheString;
SqlQueryGen
property SqlView
as %Boolean;
Specifies whether to project this query as an SQL View.
property SqlViewName
as %CacheString;
Specifies an SQL alias for the view projected from this query.
property Type
as %Dictionary.CacheClassname;
Specifies the Query class used to provide the implementation of the query interface.
property UserActualType
as %CacheString;
UserActualType
property WebMethod
as %Boolean;
description=Specifies that this query can be invoked using the SOAP protocol.
relationship parent
as %Dictionary.CompiledClass [ Inverse = Queries,Cardinality = parent ];
Pointer to the containing parent object
classmethod %Exists(oid As %ObjectIdentity)
as %Boolean
Checks to see if the object identified by the OID oid exists in the extent.
Returns %Boolean TRUE if it exists, FALSE if it does not.
classmethod %LockId(id As %String, shared As %Boolean = 0)
as %Status
%LockId()
Obtain an exclusive or shared lock on the object identified by id. The type
of lock obtained is determined by shared. This method is normally generated by
the storage class for persistent classes using %Library.CacheStorage or %Library.CacheSQLStorage.
classmethod %UnlockId(id As %String, shared As %Boolean = 0, immediate As %Boolean = 0)
as %Status
%UnlockId()
Release an exclusive or shared lock on the object identified by id. The type
of lock released is determined by shared. If this method is not overridden
then the default implementation returns an error. This method is normally generated by
the storage class for persistent classes using %Library.CacheStorage or %Library.CacheSQLStorage.
index (IDKEY on Name) [IdKey];
trigger OnDelete
(BEFORE event DELETE) trigger OnInsertUpdate
(BEFORE event INSERT/UPDATE)