2017-02-06 32 views
0

當我試圖用update_recordset聲明,我發現了以下編譯錯誤的數組字段更新表:update_recordset和陣列場

Operand types are not compatible with the operator.

這裏是我的代碼:

update_recordset Table1 setting 
    ArrayField = Table2.ArrayField 
join Table2 
    where Table2.IdField == Table1.IdField; 

有什麼想法?

回答

1

陣列字段不適用於update_recordset

你可能會成功地處理個別字段arrayField[1]等,但我記得即使這樣做失敗。您可能需要恢復爲while select forupdate

+0

謝謝1月,我試過解決單個字段'arrayField [1]'但它也不起作用。 –

+0

答覆已更新。 –