Subject Re: [IBO] Insert BLOB Text
Author Helen Borrie
At 07:17 PM 17/11/2006, you wrote:

>I have an INSERT statement in a IBO Cursor. Using a parameter, I want
>to assign text to BLOB field. However, when I execute the statement
>the text doesn't end up in the BLOB. What could be wrong?

Even though a text blob *stores* text, its data type is not string
but blob. So, if you parameterise a blob column, the data you assign
to it must be a blob! Because you are using the TDataset-compatible
stuff, follow through the examples in the Delphi help on blobstreams
(TBlobstream and the various methods and examples).

Helen