was looking at the mod administrator for dbman -- looks like a great tool. noticed in the source code some variables that look like they should define relationships between databases:
# table relations
my (@relation_fields, @relation_table, @relation_link, @relation_view, @relation_show);
} elsif ($key =~ /^db_relation_fields\d+/) {
push (@relation_fields, ($in{$key}));
} elsif ($key =~ /^db_relation_tables\d+/) {
push (@relation_table, ($in{$key}));
} elsif ($key =~ /^db_relation_link\d+/) {
push (@relation_link, ($in{$key}));
} elsif ($key =~ /^db_relation_view\d+/) {
push (@relation_view, ($in{$key}));
} elsif ($key =~ /^db_relation_show\d+/) {
push (@relation_show, ($in{$key}));
but i can't figure out how to use this. can anyone help?
# table relations
my (@relation_fields, @relation_table, @relation_link, @relation_view, @relation_show);
} elsif ($key =~ /^db_relation_fields\d+/) {
push (@relation_fields, ($in{$key}));
} elsif ($key =~ /^db_relation_tables\d+/) {
push (@relation_table, ($in{$key}));
} elsif ($key =~ /^db_relation_link\d+/) {
push (@relation_link, ($in{$key}));
} elsif ($key =~ /^db_relation_view\d+/) {
push (@relation_view, ($in{$key}));
} elsif ($key =~ /^db_relation_show\d+/) {
push (@relation_show, ($in{$key}));
but i can't figure out how to use this. can anyone help?

