I have a dataset which has a TBlobField. This only holds text and I'm having some issues when I use it on a webform with TWebDBMemo. How is this best implemented on a TWebForm?
TBlobFields holds data in binary form.
You would need to implement OnGetText, OnSetText to convert text into binary data and vice versa.
As an alternative, you could use a TMemoField (that descends from TBlobField and already does this for you).
1 Like
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.