Navigate the record

Using only the OracleQuery component, I'm able to navigate the record forwarding width Query.Next command, which is the best solutions to navigate up and down the records?
Gianluca
 
The TOracleQuery is an encapsulation of an Oracle Cursor, so you can only fetch the next record. To navigate back, you must either buffer the records in your own collection class, or use a TOracleDataSet instead.

------------------
Marco Kalter
Allround Automations
 
Back
Top