RWDBSelector select1 = myDB.database().selector();
RWDBCursor cursor1 = select1.cursor();
What does the last line mean?
What does .cursor()
do?
RWDBSelector select1 = myDB.database().selector();
RWDBCursor cursor1 = select1.cursor();
What does the last line mean?
What does .cursor()
do?
Copyright © 2021 Jogjafile Inc.
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.