Delete an object from the datacron. This function appears only for consistency with the base class and does nothing.

Return TypeFunction nameArguments
hzEcodehdbIsamfile::Delete(hzString&,)

Declared in file: hzDatabase.h
Defined in file : hdbIsamfile.cpp

Function Logic:

0:START 1:unknown 2:Return E_NOINIT 3:unknown 4:Return E_NOTOPEN 5:Return E_OK

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 ;
}