Modify configuration objects
- Invoke the AdminConfig object commands
- Retrieve the configuration ID of the objects that you want to modify:
set jdbcProvider1 [$AdminConfig getid /JDBCProvider:ProviderName/]- Show the current attribute values of the configuration object with the show command:
$AdminConfig show $jdbcProvider1- Modify the attributes of the configuration object:
$AdminConfig modify $jdbcProvider1 {{description "A Description"}}One can also modify several attributes at the same time. For example:
{{name1 val1} {name2 val2} {name3 val3}}- Save the configuration changes:
$AdminConfig save- You can use the reset command to undo changes made since your last save.
$AdminConfig reset