Maurits van der Schee
Maurits van der Schee
Lot's of questions that I can't help you with (I don't know the answers). You may try it out and help others by publishing your findings. If you need a...
Why don't you try to run it with your own dataset? I'm here to help you out when you run into problems. Also, feel free to create a YouTube video...
 ---  ----  --- ![Screen Shot 2021-09-08 at 01 58...
>Im very interested in crud generators and the like i have myself made a more dynamic crud generator that works for any table Nice, did you publish it? Can I...
>when u are viewing a record can u see related records? boths parents and children? You can only see a link to the filtered list (of children). --- ![Screen Shot...
'Post' is short for 'post_id' (a fk filter on the comments table) and 'blog started' is the default representation of a record in the related table (the value in the...
> this unfortunately contains the developer to have to create a column with the name "name". It returns the first text column, in this case 'name', see: private function getDisplayColumn(string...
>Yeah my system also has those kinds of constraints for instance the primary key has to called "id" which makes the system a bit rigid I don't have that constraint....
I read the database structure and make a database independent model of it first. Only to generate the API or UI from that model, not directly from the reflection results....
>my system also has those kinds of constraints My constraints are: - Primary keys should either be auto-increment (from 1 to 2^53) or UUID - Composite primary and composite foreign...