class %SQL.Manager.Messages
extends %SQL.CustomResultSet
property Message
as %String(MAXLEN=200);
method %Display(pDelimiter As %String = $Char(9))
Display the contents of this object on the current device
method %DisplayFormatted(pFormat As %String = -1, ByRef pFileName As %String(MAXLEN="")="", ByRef pMessages As %SQL.Manager.Messages = "", ByRef pFilesUsed As %String(MAXLEN="")=0)
Display the contents of the result object. If formatted display is available then format the results
using the requested format and, if appropriate, open the formatted results using the host OS.
Supported formats are:
-1 Normal %Display() format on current device;
0 XML
1 HTML
2 PDF (requires a renderer such as FOP)
99 TXT
If pFormat is specified as any number not listed above then it will default to TXT.
pFormat can also be specified as the text format value as shown above.
method %Next(ByRef sc As %Library.Status = $$$OK)
as %Library.Integer
Advance to the next row in the result referenced by %ProcCursor. Returns 0 if the cursor is at the end of the
result set. An optional argument contains a %Status value on return. This %Status value
indicates success or failure of the %Next call. %SQLCODE is also set by %Next.
This implementation is overridden by classes that implement the result set interface.
method %SetIterator(pRowNumber As %Library.Integer = 0)
as %Library.Integer
method Count()
as %Integer
method Insert(pMessage As %String(MAXLEN=200))