axlSDBSetValue
axlSDBSetValue(
x_SDBH
t_newValue
)
=> t / nil
Description
Sets the value of the provided setup database handle.
An example of failure is providing a value that would cause this setup database element to have the same name and value pair as another child of its parent.
Arguments
Value Returned
|
The specified value is not set for the setup database handle. |
||
Examples
Sets the value of the setup database handle KingSDBH to myVDC.
;; given mainSDBH pointing to current setup
extensionSDBH = axlSDBPutExtension( mainSDBH "test extension")
kingSDBH = axlSDBSetChild( extensionSDBH "King" "Louis XIV")
axlSDBSetValue(kingSDBH "myVDC")
=> "Henry VII"
=> t
Return to top