Name

UI_ACCESS_KEY_LIMIT — (partly documented)

SYNOPSIS

{ }

DESCRIPTION

Define the number of keys returned.

VARIABLE TYPE

Catalog variable

EXAMPLES

No examples are available at this time. We do consider this a problem and will try to supply some.

NOTES

AVAILABILITY

UI_ACCESS_KEY_LIMIT is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: code/UI_Tag/list_keys.coretag
Line 50 (context shows lines 40-54)

$db = $db->ref() unless $Vend::Interpolate::Db{$table};
my $keyname = $db->config('KEY');
if($db->config('LARGE')) {
  return ::errmsg('--not listed, too large--');
}
my $query = "select $keyname from $table order by $keyname";
#::logDebug("list_keys: query=$query");
$keys = $db->query(
        {
          query => $query,
          ml => $::Variable->{UI_ACCESS_KEY_LIMIT} || 500,
          st => 'db',
        }
      );
if(defined $keys) {

Source: dist/lib/UI/Primitive.pm
Line 342 (context shows lines 332-346 in list_keys():311)

return '' unless $db;
$db = $db->ref() unless $Vend::Interpolate::Db{$table};
my $keyname = $db->config('KEY');
if($db->config('LARGE')) {
  return ::errmsg('--not listed, too large--');
}
my $query = "select $keyname from $table order by $keyname";
$keys = $db->query(
        {
          query => $query,
          ml => $::Variable->{UI_ACCESS_KEY_LIMIT} || 500,
          st => 'db',
        }
      );
if(defined $keys) {

AUTHORS

Interchange Development Group

SEE ALSO

DocBook! Interchange!