What does cursor function of RWDBCursor do?

59 Views Asked by At
RWDBSelector select1 = myDB.database().selector();
RWDBCursor cursor1 = select1.cursor();

What does the last line mean? What does .cursor() do?

1

There are 1 best solutions below

1
On BEST ANSWER

RWDBSelector::cursor() gives you a cursor for the execution of your RWDBSelector.

For more information about how to work with DB cursors see either this excellent example for RWDBCursor or the documentation for your specific database.