TOraclequery.first only possible on Oracle Net 9.0 and later

ahwolff

Member
TOraclequery.first only possible on Oracle Net 9.0 and later. I get this error message when I issue the first method for TOracleQuery. The query is pointing to an active oracle session which is connected to a 10g database.
What am I doing wrong?
 
The First function applies to a scrollable result set, which is only available on Oracle9 or later. I assume that you are using an Oracle8 or earlier client?

In any casy you will rarely need a scrollable result set. Most of the time it will be sufficient to execute your query and use the Next function to traverse the result set in one direction.
 
Back
Top