Name

NoExport — specify databases not to re-export

SYNOPSIS

table_name...

DESCRIPTION

The directive specifies external database tables that should never be exported back to the text source files.

DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

Example: Disabling 'products' and 'inventory' table export

Put the following in catalog.cfg:

NoExport products inventory
NoExportExternal yes

NOTES

AVAILABILITY

NoExport is available in Interchange versions:

5.6.0, 5.7.0 (cvs-head)

SOURCE

Interchange 5.7.0:

Source: lib/Vend/Config.pm
Line 632

['NoExport',     'boolean',       ''],

Source: lib/Vend/Config.pm
Line 2957 (context shows lines 2957-2974)

sub parse_boolean {
my($item,$settings) = @_;
my(@setting) = grep /\S/, split /[\s,]+/, $settings;
my $c;

if(defined $C) {
  $c = $C->{$item} || {};
}
else {
  no strict 'refs';
  $c = ${"Global::$item"} || {};
}

for (@setting) {
  $c->{$_} = 1;
}
return $c;
}

AUTHORS

Jon Jensen and Mark Johnson

SEE ALSO

NoExportExternal(7ic)

DocBook! Interchange!