LoadOnlyMode(true) doesn't speed up query operations. It's purpose is to drop the
spatial index to improve INSERT performance, but while in LoadOnlyMode, the feature
class query performance will be degraded (no index).
It's possible that toggling load mode (from false to true and back to false) will improve
spatial query performance (depending on the fragmentation of the old index), but the
ordering of the spatial features inside the table itself (spatial fragmentation) might have
a bigger impact on overall draw performance than a stale spatial index (and its impact
would be evenly applied to both access APIs).
"Draw" performance can also be impacted by unnecessary attribute retrieval (only
'get' the attribute(s) you need for rendering).
- V