Developer Reference
Getting Started
CFMumps is easy to learn. These brief sections will help you to get up and running quickly.
- 2. Connecting to MUMPS
- Choosing an API
- ColdFusion Resources
"Everything is going to be connected to cloud and data... All of this will be mediated by software."
--Satya Nadella
Basic API
The basic API provides familiar MUMPS-style methods for accessing data and code.
- mumps.open()
- mumps.isOpen()
- mumps.close()
- mumps.get()
- mumps.set()
- mumps.kill()
- mumps.merge()
- mumps.data()
- mumps.order()
- mumps.mqueryquery()
- mumps.lock()
- mumps.unlock()
- mumps.mFunctionmumps_function()
- mumps.mVersionmumps_procedure()
- mumps.mumps.mEval_function_ex()/mumps.mumps_procedure_ex()
Global API
The global API is a higher-level view of MUMPS data, projecting it to native CFML structures.
- global.open()Globals API Instantiation
- global.close()
- global.value()
- global.getObject()
- global.setObject()
- global.delete()
- global.defined()
Custom Tags
CFMumps' custom tags provide easy access to MUMPS data from within CFML templates.