The few times in the past that I've loaded unbound data, I've tended to
cheat and use temp tables (not really unbound) or use code for small
datasets.
I'm currently involved in a project that has numerous tables in the 200
column range, with several thousand rows of data. A consulting review prior
to my involvement stressed the wasted space and database speed as the major
impetus for normalization. Although the db actually works fairly well.
However, it's a bitch to manipulate the data with 200 column tables with
relative years and categories mashed together as columns. Plus having all
the data categories/types hard coded means that the same data types exists
with different spellings all over the place.
Unfortunately normalizing the data has broken most of the existing forms. My
initial thought was to use "smart labels" for the text boxes and use a
collection (class) to load and save the data. In fact this has worked fairly
well for one of the more complex forms, but there are quite a few more to
go. These forms have a very specific layout with hard coded labels (not
continuous) and a mixture of detailed and summarized records. It's looking
like building temp tables and binding them to the existing forms is still
the best way to go, given the "customized " layout of these forms.
So I'm curious, what's your preference for loading data to unbound forms?
cheat and use temp tables (not really unbound) or use code for small
datasets.
I'm currently involved in a project that has numerous tables in the 200
column range, with several thousand rows of data. A consulting review prior
to my involvement stressed the wasted space and database speed as the major
impetus for normalization. Although the db actually works fairly well.
However, it's a bitch to manipulate the data with 200 column tables with
relative years and categories mashed together as columns. Plus having all
the data categories/types hard coded means that the same data types exists
with different spellings all over the place.
Unfortunately normalizing the data has broken most of the existing forms. My
initial thought was to use "smart labels" for the text boxes and use a
collection (class) to load and save the data. In fact this has worked fairly
well for one of the more complex forms, but there are quite a few more to
go. These forms have a very specific layout with hard coded labels (not
continuous) and a mixture of detailed and summarized records. It's looking
like building temp tables and binding them to the existing forms is still
the best way to go, given the "customized " layout of these forms.
So I'm curious, what's your preference for loading data to unbound forms?
Comment