...
mumps.mquery() returns a string containing the next subscripted variable name.
Example
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<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()> |