We are looking for Oracle Ref Cursor alternative in MS Access database as we have small data.We want to go light but before jumping into MS Access just wanted to evaluate the features it has to offer.I am no MS-Access developer.
Access has no classical cursors that can be defined in SQL. Access SQL is too limited.
But, a close analog of a cursor is DAO (Data Access Objects) under VBA. Using code, you can emulate most anything a Ref-Cursor can do.
Overview DAO vs. Ref-Cursor
(Credit to Oracle PL/SQL REF Cursors)