Cheat Sheet

The most common functions and methods of Oxygen use 4 letters. :-)

PickRetrieves a database bound item from the cache or from the database.
SeekRetrieves a list of database bound items from the cache or from the database.
MakeCreates an database bound item in memory and in the cache with an ID taken from a database sequence (permanent ID).
TempCreates an item in memory only with an ID taken from a memory sequence (temporary ID).
CopyClones an item. The id of the new item can be taken either from a database or from a memory sequence.
InitProcedure than runs when an item is created. It should never be called directly. An OnInit event is fired each time Init called.
LoadProcedure 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.
SaveInserts or updates an item in the database (and in the cache).
KillDeletes an item from the database (and from the cache).
MetaGets the meta object of an item.
WrapCreates a named wrap from an item.
FillFills a control with information from a wrap (or from an item).
ReadUpdates a wrap (or an item) with data from the HTTP request parameters.