dbClose
dbClose(
d_cellViewId
)
=> t / nil
Description
When the number of closes to the cellview equals the number of opens, the cellview is purged from virtual memory, freeing the memory so it can be reused in subsequent dbOpenCellViewByType calls. Internally, the system maintains the count for the number of openings and closings.
Only one user at a time can open a cellview for append or write. It is recommended that you close all cellviews that you open.
dbClose will close the cellview twice when the reference count is two (2), thereby removing the cellview from virtual memory.
Arguments
Values Returned
Examples
Saves the changes and close the cellview.
dbSave(cellview)
dbClose(cellview)
Return to top