update_recordset 和数组字段
update_recordset and array field
当我尝试使用 update_recordset
语句更新带有数组字段的 table 时,出现以下编译错误:
Operand types are not compatible with the operator.
这是我的代码:
update_recordset Table1 setting
ArrayField = Table2.ArrayField
join Table2
where Table2.IdField == Table1.IdField;
有什么想法吗?
数组字段不适用于 update_recordset
。
您可能成功地解决了各个字段 arrayField[1]
等问题,但我记得即使那样也失败了。
您可能必须恢复到 while select forupdate
。
当我尝试使用 update_recordset
语句更新带有数组字段的 table 时,出现以下编译错误:
Operand types are not compatible with the operator.
这是我的代码:
update_recordset Table1 setting
ArrayField = Table2.ArrayField
join Table2
where Table2.IdField == Table1.IdField;
有什么想法吗?
数组字段不适用于 update_recordset
。
您可能成功地解决了各个字段 arrayField[1]
等问题,但我记得即使那样也失败了。
您可能必须恢复到 while select forupdate
。