当我删除已从数据 Window 中删除但尚未提交到数据库的数据时

when i delete a data that has been deleted from the Data Window but has not been committed to the database

当我删除已从数据Window中删除但尚未提交到数据库的数据时。在数据库中创建了一个空行...谁能帮我解决这个问题

尝试删除简单的一行并将其删除。

任何插入更新删除都需要提交,添加:

if dw.update() = 1 then 
  commit;
else 
 rollback;
end if

编码愉快