I've added back-end handling for an orderBy parameter submitted to the search and spreadsheet routines, that sort the results according to the specified field. However, this works only partially with the normal table view, because many of the fields contain ids rather than sortable strings, so it will behave a bit unexpectedly from the user's point of view, because the sort order based on the ids will not match that of the visible strings by which they're represented in the results table.
I've come to the conclusion that the current state of this database (and the probable state of any database in which the content expert has complete control over custom fields, and an interest in exploring various approaches to the data) is such that sophisticated searching with flexible sorting and spreadsheet output can only be achieved by building a VIEW of the core table, incorporating all the related and custom fields in the form of either text, integers or dates. The only integer fields would be actual number fields (such as ids, counts, totals etc.), while all lookup and one-to-many fields would be converted into text fields containing their looked-up and amalgamated content. Searching such a table would mean that all fields could be treated as equal, and searching/sorting would be much faster.
It seems to me that the MdhRecord object should be able to spit out two blocks of code automatically, in order to help set up this system:
- A block of SQL which can be used to create the VIEW in the first place.
- A new MdhRecord object which models the data as it appears in the VIEW.
The former will be quite complicated, but I think the latter should be relatively straightforward. There are two outstanding issues:
- Should the VIEW-generation code be written in such a way that once it's been created, it's able to stay current (meaning that if, for instance, the user deletes or adds a custom field, the VIEW would automatically accommodate this); or should it attempt only to model one stable condition of the data?
- Should the MdhRecord object be generated on-the-fly when required (which is slow, but would accommodate on-the-fly changes), or should it also be re-generated when required?
It's worth considering that this view and its associated search ought really to be the public face of the db (not exposing any editing capabilities), so it might be acceptable for it to be static and to require updating when the db structure changes.