I am struggling with the "Incorrect Values in SQLDA Structure" error message when I try to update the blob field in a Firebird 2.1 database from a DBX Delphi 2009 application.
However, I get an error when I try to execute TSQLQuery with the following SQL: "update MYTABLE set FIELD1 =: data where id =: id"
Relevant delphi code:
MyQuery.ParamByName('id').AsInteger := id;
MyQuery.ParamByName('data').LoadFromFile(filename, ftBlob);
MyQuery.ExecSQL();
Where should I look? This works in earlier versions of Delphi.
source
share