Subject Re: [IBO] blob 2 buffer?
Author Helen Borrie
At 08:08 PM 3/01/2008, you wrote:
>Hi,
>
>I want to read the contents of a binary blobfield into a buffer (like
>array of char or array of byte).
>
>Howto? I can use SetBlobData to do the opposite, but there is not
>something like GetBlobData...

Have you tried YourBlobField.AsString? You might also think about pulling it into a stream or a TStrings - look at the AssignTo method of TIB_ColumnBinary...you should be able to manipulate the bytes into a byte array from one of those objects.

Helen