UltraLite User's Guide
C++ API Reference
ULCursor class
bool Open( ULConnection * conn )
Opens a cursor on the specified connection. If the object is a result set with parameters, you must set the parameters before opening the result set.
When using Open from the ULTable subclass of ULCursor, do not open two connections on a ULTable objct at one time.
true (1) if successful.
false (0) if unsuccessful.
The following example opens a result set object (which extends the cursor class) and moves the cursor position to the first row:
rs.Open( &conn ); rs.BeforeFirst(); rs.Next();