#include <oSysDatabase.h>
Inheritance diagram for oSysDatabase:

Public Methods | |
| oSysDatabase (const char *iName, const char *iUrl) | |
| void | d_activate () |
| void | d_deactivate () |
| d_Ref< oSysClass > | getClass (const char *iClassName) |
| d_Ref< oSysClass > | addClass (d_String iName, d_ULong iStart, d_ULong iStep) |
| void | renameClass (d_String iOldName, d_String iNewName) |
| void | removeClass (d_String iName) |
| void | addDataSeg (d_String iPath, d_ULong iStart, d_ULong iStep) |
| void | changeSizeDataSeg (d_String iPath, d_ULong iValue) |
| void | changeStepDataSeg (d_String iPath, d_ULong iValue) |
| void | removeDataSeg (d_String iPath) |
| d_Dictionary< d_String, d_String > & | getNotes () |
| d_String | getNote (const char *iNote) |
| void | setNote (const char *iNote, const char *iValue) |
| const char * | getName () |
| const char * | getUrl () |
| oDomain * | getDomain () |
| oSysDatabase (d_Object::DynaFactoryConstructor *iObj) | |
|
||||||||||||
|
|
|
|
|
|
||||||||||||||||
|
|
|
||||||||||||||||
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
|
Object activation trigger. It's the trigger called asynchronously by Orient ODBMS when the object is requested by a context. It can be defined as a special "cache constructor". It's useful for reset transient members before the use. If the user class, inherited by d_Object, doesn't define a own d_activate virtual method, by default is called the d_Object::d_activate() that doesn't execute any operation. SEE ALSO: d_deactivate() ODMG : Compliant Reimplemented from d_Object. |
|
|
Object deactivation trigger. It's the trigger called asynchronously by Orient ODBMS when the object is freed in memory. It can be defined as a special "cache destructor". It's useful when an object had to free some memory (transient members) before to die. If the user class, inherited by d_Object, doesn't define a own d_deactivate virtual method, by default is called the d_Object::d_deactivate() that doesn't execute any operation. SEE ALSO: d_activate() ODMG : Compliant Reimplemented from d_Object. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
|
|
|
|
|
1.3-rc1