Versions Compared

Key

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

Opens a connection to a MUMPS database. Must only be called when the connection is closed.

Arguments

None.

Example

Code Block
languagejs
titleCFScript
//open a connection to MUMPS
var mumps = new lib.cfmumps.Mumps();
mumps.open();
//close it again
mumps.close();

...