Subject | RE: [ib-support] Please help -- ! Having problems inserting Text as Blob in Delphi |
---|---|
Author | H. Th. van der Meer |
Post date | 2001-08-19T08:23:39Z |
Louis,
Maybe is what I do to simple for you, but I use a blob like this:
CREATE DOMAIN DOMTEXT AS BLOB SUB_TYPE TEXT SEGMENT SIZE 128;
And than I use AsString to store the text:
sql.FieldByName('BLOB_COL').AsString := Memo.Text;
I use IBX sql components.
Cheers,
Henk.
Maybe is what I do to simple for you, but I use a blob like this:
CREATE DOMAIN DOMTEXT AS BLOB SUB_TYPE TEXT SEGMENT SIZE 128;
And than I use AsString to store the text:
sql.FieldByName('BLOB_COL').AsString := Memo.Text;
I use IBX sql components.
Cheers,
Henk.