The most common functions and methods of Oxygen use 4 letters. :-)
| Pick | Retrieves a database bound item from the cache or from the database. |
|---|---|
| Seek | Retrieves a list of database bound items from the cache or from the database. |
| Make | Creates an database bound item in memory and in the cache with an ID taken from a database sequence (permanent ID). |
| Temp | Creates an item in memory only with an ID taken from a memory sequence (temporary ID). |
| Copy | Clones an item. The id of the new item can be taken either from a database or from a memory sequence. |
| Init | Procedure than runs when an item is created. It should never be called directly. An OnInit event is fired each time Init called. |
| Load | Procedure than runs when an item's fields are loaded from the database. It should never be called directly. An OnLoad event is fired each time Load called. |
| Save | Inserts or updates an item in the database (and in the cache). |
| Kill | Deletes an item from the database (and from the cache). |
| Meta | Gets the meta object of an item. |
| Wrap | Creates a named wrap from an item. |
| Fill | Fills a control with information from a wrap (or from an item). |
| Read | Updates a wrap (or an item) with data from the HTTP request parameters. |