This might be a simple question...
I declare a cursor for:
SELECT TOP 10 * FROM tablename
but, there is only 1 row in tablename and I am fetching until SQLCODE = +100
Does the FETCH reach +100 after 1 row or does it keep processing until all 10 have been fetched?