Banana
08-16-2008, 05:42 PM
I wanted to ask around about different way to approach handling any data type that are mapped to Access's Memo data type (e.g. LONGTEXT for example) from ODBC end.
Jet's behavior is to only fetch such data when it has to actually display on the screen, and will not fill it up in background as it does with the rest of recordset. That's good behavior, I'd think. :)
So, Microsoft would recommend having a button to display the text if user needs to view the data to help improve general performance. I am not so big fan of asking my users to click more to make computer go faster.
I kicked around some ideas such as truncating to 255 character and thus passing off as a VARCHAR(255) data type = Text data type, but feel that entails a bit excessive hammering of the server.
One thing I have on list to experiment is whether a continuous form displaying only one record at a time would behave just like a single form and actually fetch the data in LONGTEXT when it is painted on the screen, though I would think single form is preferable in most of cases.
Anyway, I'm interested in hearing from others how they provide the users with access to any data type that are mapped to Memo data type (and to an extent, OLE Object, since they behave pretty much same).
Jet's behavior is to only fetch such data when it has to actually display on the screen, and will not fill it up in background as it does with the rest of recordset. That's good behavior, I'd think. :)
So, Microsoft would recommend having a button to display the text if user needs to view the data to help improve general performance. I am not so big fan of asking my users to click more to make computer go faster.
I kicked around some ideas such as truncating to 255 character and thus passing off as a VARCHAR(255) data type = Text data type, but feel that entails a bit excessive hammering of the server.
One thing I have on list to experiment is whether a continuous form displaying only one record at a time would behave just like a single form and actually fetch the data in LONGTEXT when it is painted on the screen, though I would think single form is preferable in most of cases.
Anyway, I'm interested in hearing from others how they provide the users with access to any data type that are mapped to Memo data type (and to an extent, OLE Object, since they behave pretty much same).