Some configuration object types, for example, Server and other resource types, have templates that you can use when you create an object. If you create a JDBCProvider object using the create command, this object is built with the default template. If you know that you need a particular type of JDBCProvider object, you can use a template for that type.
Use the AdminConfig object listTemplates command to list available templates, for example:
Using Jacl:
$AdminConfig listTemplates JDBCProvider
Using Jacl:
$AdminConfig listTemplates JDBCProvider DB2This command returns a list of templates with display names containing DB2.
Using Jacl:
set jdbc [$AdminConfig listTemplates JDBCProvider DB2] set jdbc1 [lindex $jdbc 0] $AdminConfig show $jdbc1