首页 / 浏览问题 / 移动GIS / 问题详情
记录集addNew()失败 应该怎么查看原因
mxc
112EXP 2017年12月11日

使用动态游标得到的RecordSet 使用addNew增加对象,第一次增加时保存成功,之后都会返回false,怎么才能查看失败的原因

Recordset recordset = vector.getRecordset(false, CursorType.DYNAMIC);
recordset.edit();
boolean b = recordset.addNew(geometry, params);
boolean update = recordset.update();
result = b & update;

1个回答

解决了,

在使用vector.getREcordset()时参数换为 true,获取到空的数据集,就能添加成功了
mxc
112EXP 2017年12月11日
...