...
Returns a CFML boolean value which is true if a connection to MUMPS is open; otherwise, returns falseotherwise.
Example
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
var mumps = new lib.cfmumps.Mumps(); mumps.open(); if(mumps.isOpen()) { writeOutput("Connection exists!"); } else { writeOutput("Connection does not exist."); } mumps.close(); |
...