Delete an object from the datacron. This function appears only for consistency with the base class and does nothing.
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdbIsamfile::Delete | (hzString&,) |
Declared in file: hzDatabase.h
Defined in file : hdbIsamfile.cpp
Function Logic:
Function body:
hzEcode hdbIsamfile::Delete (hzString& key)
{
// Delete an object from the datacron.
//
// This function appears only for consistency with the base class and does nothing.
//
// Arguments: 1) datumId The object id to be deleted
//
// Returns: E_NOINIT The datacron is not initialized
// E_SEQUENCE The datacron is not open for writing
// E_RANGE The requested item does not exist
// E_OK Operation successful
_hzfunc("hdbIsamfile::Delete") ;
// Check init state
if (m_nInitState < 1) return E_NOINIT ;
if (m_nInitState < 2) return E_NOTOPEN ;
return E_OK ;
}