MV_COMPONENT_TABLE — database name for components
The term database in Interchange lingo has a different meaning as in common language, please check database for more information.
Interchange 5.9.0:
Source: code/UserTag/component.tag
Line 44 (context shows lines 34-48)
$name ||= $control->{component};
$name ||= $opt->{default};
if (! $name or $name eq 'none') {
# Increment control_index so empty component has no side effect
$::Scratch->{control_index}++;
return;
}
my $t = $opt->{comp_table} || $::Variable->{MV_COMPONENT_TABLE} || 'component';
my $ctab = $::Variable->{MV_COMPONENT_CACHE} || 'component_cache';
my $record;
my $db = database_exists_ref($t);