Hi All,

I am seeing the following error during a simple insert into a table that has a text field:

"Dynamic SQL Error
SQL error code = -303
feature is not supported
BLOB and array data types are not supported for move operation"

The insert is using parameterized statements, but is otherwise completely normal:
INSERT INTO COMPONENTCOMMENT (COMPONENTID,COMMENTRANK,COMMENTTYPE,COMMENTDESCRIPTION,COMMENTBODY) VALUES (@COMPONENTID,@COMMENTRANK,@COMMENTTYPE,@COMMENTDESCRIPTION,@COMMENTBODY)

COMPONENTID = bigint
COMMENTRANK = smallint
COMMENTTYPE = smallint
COMMENTDESCRIPTION = varchar(70)
COMMENTBODY = BLOB -- LONGVARCHAR -- subtype: text

Do you know why I would get this error?

Thanks,
Jess

Reply via email to