The long-term plan for rapid generation of spreadsheet output and niftier searches is to create a VIEW of the core table which contains all the data simply in the form of strings, which can be indexed, searched and rendered more rapidly. The first stage of this is figuring out how to turn the adaptive DB field types into string fields (or integers where they're simple integers). This is a bit tricky in the case of the one-to-many fields and the custom fields. This is a block of working code which covers a few of the field types:
CREATE VIEW `documents_view` AS SELECT
`doc_id` AS `doc_id`,
(SELECT `dt_name` FROM `docTypes` WHERE `dt_id` = `documents`.`doc_to_docTypes_id`) AS `doc_to_docTypes_id`,
`doc_archive` AS `doc_archive`,
(SELECT GROUP_CONCAT(`disTypes`.`dt_name` SEPARATOR ', ') FROM `docs_to_disTypes` INNER JOIN `disTypes` ON `disTypes`.`dt_id` = `docs_to_disTypes`.`dtd_disType_id_fk` INNER JOIN `documents` AS `temp_docs` ON `temp_docs`.`doc_id` = `docs_to_disTypes`.`dtd_doc_id_fk` WHERE `docs_to_disTypes`.`dtd_doc_id_fk` = `documents`.`doc_id`) AS `doc_disTypes`
FROM `documents`
This is based on JW's documents table. The first is a straight MdhIntField; the second is an MdhStrSelectField; the third is an MdhStrLookupField; and the fourth is the trickiest one so far (thanks Jamie and Greg), an MdhOneToManyField.
Once I've worked through generation code for all of the field types, and tested it, I need to add an abstract function called getViewGenerationCode() to MdhBaseField, and implement it in the descendants, so that MdhRecord can call this function on all its fields and use it to construct an SQL command that will generate a view.
One issue that remains unresolved -- we're still working on it -- is what happens when your one-to-many field exceeds the default group_concat_max_len value for MySQL (which is 341). Right now, it looks as though any field in a view created with group_concat will end up as varchar(341), but we don't know what will happen if the output of the group_concat is longer than that; will it be truncated, or will the view field be expanded? The former seems more likely, unless we can increase the group_concat_max_len config setting, which can apparently be done for a single session (SET @@group_concat_max_len = 9999999;). Jury's out on this until we can do more research and testing.