Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

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

x_SDBH

Setup database handle

t_newValue

The new value to be set to the setup database handle.

Value Returned

t

The specified value is set for the setup database handle.

nil

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
 ⠀
X