Versions Compared

Key

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

Determines whether or not a connection to MUMPS is active.

Arguments

None.

Return Value

Returns a CFML boolean value which is true if a connection to MUMPS is open;  otherwise, returns falseotherwise.

Example

 


Code Block
languagejs
titleCFScript
linenumberstrue
var mumps = new lib.cfmumps.Mumps();
mumps.open();

if(mumps.isOpen()) {
	writeOutput("Connection exists!");
}
else {
	writeOutput("Connection does not exist.");
}

mumps.close();

...