I've got a quick request for an additional feature to the new QCodeGen Beta 3. This feature specifically relates to functionality I need for QDrupal.
Because I use the same database for Drupal as well as Qcodo, I have many Drupal tables that I do not want to be included in the codegen. The way I currently handle this is by prefixing all of my 'Qcodo' tables with something. I then just filter out all tables that do not have that prefix, and voila!
This is a feature I'd really like to see in the main Qcodo distribution. It's fairly trivial and I'd be happy to put together a patch.
The second feature request is very tightly coupled with the first. There are a few cases to include tables from Drupal in my codegen, even if they do not have the special prefix. I currently include these via a comma-delimited list.
My logic ends up to be something like this:
Skip any table that doesn't have the prefix 'qdrupal_' except tables that are in this comma seperated list $exception_list.
Thanks Mike!