...
Returns a numeric value of 1 if the merge was successful; 0 otherwise.
Example
This example is equivalent to the following MUMPS code:
Code Block | ||||||
---|---|---|---|---|---|---|
title | MUMPS | |||||
true | ||||||
M myGlobal(1,"foo")=^otherGlobal("bar") | ||||||
Code Block | ||||||
| ||||||
<cfset mumps = createObject("component", "lib.cfmumps.mumps")> <cfset mumps.open()> <cfset mumps.merge("otherGlobal", ["bar"], "myGlobal", [1, "foo"])> <cfset mumps.close()> |
This example is equivalent to the following MUMPS code:
Code Block | ||||
---|---|---|---|---|
| ||||
M myGlobal(1,"foo")=^otherGlobal("bar") |