Accessors for class IliMemoryTable
Description
The IliMemoryTable
class defines a one-tier table that manages rows itself. Note that the contents of such tables is discarded when the table is deleted. This contrasts with two-tier tables, such as IliSQLTable
objects, which manage remote database rows that outlive them.
Row Management
The methods that let you manage rows through a memory table object are described in the IliTable
class. The most important of these methods are:
clearRows
deleteRow
insertRow
moveRow
updateRow
The row cache of a memory table is the ultimate location where rows are stored. As a consequence, the following do exactly the same thing as their non "inCache" version:
deleteRowInCache
insertRowInCache