When I'm trying to update a table with an array field using update_recordset statement I'm getting the following compilation error:
Operand types are not compatible with the operator.
Here is my code:
update_recordset Table1 setting
ArrayField = Table2.ArrayField
join Table2
where Table2.IdField == Table1.IdField;
Any thoughts?