I habe a Firebird table with an integer field (myid) and an blob field (BLOB SUB_TYPE 1 SEGMENT SIZE 80 NOT NULL). In my delphi application I use a TIBCQuery with the following code:
Code: Select all
Query.Close;
Query.SQL.Text := 'insert into mytable (myid, mytxtfield) values (:myid, :mytxtfield)';
Query.ParamByName('myid').AsInteger := 7;
Query.ParamByName('mytxtfield').AsString := 'Test';
Query.ExecQuery;
Code: Select all
EIBCError
Dynamic SQL Error
SQL error code = -303
feature is not supported
BLOB and array data types are not supported for move operation
IBConnection.Options.EnableMemos := true;
How to solve this? Thank you!