during runtime, when a cursor is opened.. when a new row is inserted into the base table, that satisfies the condition in select clause of declare cursor.. will that row be included in the result table after open cursor statement..
ie consider a table employee
employid name
1152 pradeep
1162 gowda
exec sql
declare c2 cursor for select employeeid, name from employee
end-exec
at runtime, when a cursor is openend ,if a new row is added
1175 bob
will the new row be selected for the result table