Hello.
My current task is to make a web-interface for the DB using Rose::DB::Object.
And I have an issue. It's about how to reveal linked tables.
I.e., one table is named FRIENDS with fields:
- HUMAN_ID -> link to the table HUMANS by ID field
- some other fields
I create Rose::DB::Object for table FRIENDS with automatic resolving of structure.
And then I want to realize an universal Web-Widget, that will show all the fields contained in this table.
All the simple fields are shown as simple <input>-s, but what should I do with linked fields?
In particular way, I make a foreach-circle on MyProject::DB::Friends->meta->column_names and just make an input for each of them.
But I need to exclude all the links to make an input with autocompletion plugin inited on them.
Please help me with this issue.