I have a text value and it has 15000+ characters, i need to save it in a table. And after doing some research i now know that i have to use BLOB to save this value in a Table. Now how can i convert this text value into BLOB.
I have a text value and it has 15000+ characters, i need to save it in a table. And after doing some research i now know that i have to use BLOB to save this value in a Table. Now how can i convert this text value into BLOB.
Just want to add to Soft Devil's if you want to temporary write the data to a Blob,
you can also use TempBlob.Blob.CreateOutStream(OStream)
Hi
record.Blobfield.CreateOutStream(OStream);
OStream.Write(TextVar);
André Arnaud de Cal... 291,904 Super User 2024 Season 2
Martin Dráb 230,605 Most Valuable Professional
nmaenpaa 101,156