Subject Re: [firebird-support] Invalid BLOB ID
Author Helen Borrie
At 01:59 PM 12/10/2004 +0200, you wrote:

>Hello,
>
>What does the error message "Invalid BOLB ID" stands for? What's the reason?
>
>I receive this error with an INSERT SQL statement for which a column is
>defined as BLOB SUB_TYPE 1

I guess you are trying to execute an INSERT statement that wants to pass
NULL to the blob column. If the blob isn't used, omit the column from the
insert statement. If it is used, pass a blob or, if it is within the
limits for a string in your charset, you can pass it as a string, including
the empty string ''.

./heLen