我正在尝试将一些行从一个游标传输到另一个游标。
Like Suppose i get one cursor from database and now i want to create one cursor based
on the previous cursor
Lets say, In First cursor
1. A>12 Transfer all the values of first row to cursor B.
2. A>12 Transfer all the values of first row to cursor B.
3. A>12 Not true move next.
4. A>12 Transfer all the values of first row to cursor B.
答案 0 :(得分:1)
游标无法更新,因为它不存储所有值(这就是为什么对于大量的行,Cursor比列表更有效)。
您可以做的是更新数据库中的数据,以便数据不再存在于B中,并切换到A,然后再执行其他请求。
如果您不想修改数据,则可以通过将光标中的数据放入列表来实现。