Update/Insert of a Memo field
Posted: Thu 09 Apr 2009 14:08
I tried to do a SQL statement with a parameter on a Blob but being a memo field - this stuff works with FIB plus so I thought it should not be a problem WRONG!
sql := UPDATE
SET MEMOFIELDNAME = :MEMOFIELDNAME
WHERE
(Q being a TIBCSQL)
Q.PARAMBYNAME(MEMOFIELDNAME).value := StringList.Text;
Q.autocommit :=true;
Q.execute
crash !! Blob and array types are not supported for move operator
it is just text why you cannot insert or replace it simply like that?
Any work around?? please
regards
PW
sql := UPDATE
SET MEMOFIELDNAME = :MEMOFIELDNAME
WHERE
(Q being a TIBCSQL)
Q.PARAMBYNAME(MEMOFIELDNAME).value := StringList.Text;
Q.autocommit :=true;
Q.execute
crash !! Blob and array types are not supported for move operator
it is just text why you cannot insert or replace it simply like that?
Any work around?? please
regards
PW