Subject RE: [firebird-support] working with cursors
Author Alan McDonald
> Hi all,
>
> where can I find a detailed example of using cursors
> in a FB 1.5 DB.
>
> After declaring and opening a cursor I have to fetch
> the values in a loop, right? How do I know, that the
> last row has been fetched?
>
> What happens if I delete rows out of the table
> on which the select statement in cursor declaration
> is based, while stepping to the cursor?
>
> Regards
>
> Jürgen

Don't forget transactions - if the record is deleted by another person
(another trasnaction) will still be visible to teh cursor in your
trasnaction. Is that what you meant?
Alan