This is a discussion on Navigating a ResultSet in OCCI within the Oracle Miscellaneous forums, part of the Oracle Database category; --> I would like to be able to go to a specific row in a ResultSet and get the data ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| can you please elaborate on what you mean by "a specific row"? You have all the rows satisfying your query criteria in the Resultset. You need to navigate through the rows by issuing rset->next() which will take you sequentially through all the rows in the resultset. thanks, KM. coficio wrote: > I would like to be able to go to a specific row in a ResultSet and get > the data from that row. Is that at all possible? If not, should i be > using something else do do this? > > thanks > > Alex > |