occpSave
occpSave(
o_occpHandle
)
=> t / nil
Description
Saves a properties file opened with occpOpen and keeps it open. Only saved updates are reflected when other tools access the file.
Arguments
|
The properties file handle returned from a call to |
Value Returned
|
The properties file was not saved. The reasons could be that the file was not found, it was not open, or it did not have any changes to save. |
Example
MyHdbHandle = hdbOpen("lib1" "cell1" "cfgView1" "a" "CDBA") when( MyHdbHandle MyOccpHandle = occpOpen("lib1" "cell1" "cfgView1" "a" "CDBA") when( MyOccpHandle occpSetCellProp(MyOccpHandle "lib1" "cell1" occpCreateProp("variant"
"lowPower"))
occpSave(MyOccpHandle)
occpClose(MyOccpHandle) )
(hdbClose MyHdbHandle) )
Related Topics
Parent/Child Database Functions
Return to top