Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update to use constructor

Closes the database.

Arguments

None

Return Value

Returns a component, which is an instance of lib.cfmumps.globalGlobal.This facilitates method chaining.

Example

Code Block
languagejs
titleCFScript
linenumberstrue
glob = createObject("component", "new lib.cfmumps.global");
glob.openGlobal("VA", [200]);
glob.close(); 

...

Code Block
languagecoldfusion
titleCFML
linenumberstrue
<cfset glob = createObject("component", "new lib.cfmumps.global")>
<cfset glob.openGlobal("VA", [200])>
<cfset glob.close()>

 

...