global.close()
Closes the database.
Arguments
None
Return Value
Returns a component, which is an instance of lib.cfmumps.Global.This facilitates method chaining.
Example
CFScript
glob = new lib.cfmumps.Global("VA", [200]); glob.close();Â
CFML
<cfset glob = new lib.cfmumps.Global("VA", [200])> <cfset glob.close()>