Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Obtains the next subscripted variable name in the referenced global.

Arguments

ArgumentData TypeRequiredDescription
globalNamestringYesThe global reference to examine

Return Value

mumps.mquery() returns a string containing the next subscripted variable name.

Example

 

CFML
<cfset mumps = createObject("component", "lib.cfmumps.mumps")>
<cfset mumps.open()>
<cfset mumps.set("testGlobal", ["x"], "testValue")>
<cfset result = mumps.mquery("^testGlobal")>
<!--- result will be '^testGlobal("x")' --->
<cfset mumps.close()>
  • No labels