Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Returns a numeric value of 1 if the merge was successful; 0 otherwise.

Example

This example is equivalent to the following MUMPS code:

linenumbers
Code Block
titleMUMPS
true
M myGlobal(1,"foo")=^otherGlobal("bar")
Code Block
languagecoldfusion
titleCFML
linenumberstrue
<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
titleMUMPS
linenumberstrue
M myGlobal(1,"foo")=^otherGlobal("bar")