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 |
---|
language | coldfusionjs |
---|
title | CFMLCFScript |
---|
linenumbers | true |
---|
|
<cfset glob = createObject("component", "new lib.cfmumps.global")>
<cfset glob.openGlobal("VA", [200])>
<cfset;
glob.close()>; |
Code Block |
---|
language | jscoldfusion |
---|
title | CFScriptCFML |
---|
linenumbers | true |
---|
|
<cfset glob = createObject("component", "new lib.cfmumps.global");
glob.openGlobal("VA", [200]);>
<cfset glob.close(); > |