How to make local sort with ODAC
How to make local sort with ODAC
example please Delphi or BCB
To perform local sorting of data in TOraQuery or TOraTable components assign to IndexFieldNames property the list of field names by which the recordset has to be sorted. For example:
See description of IndexFieldNames property in ODAC help for details.
Code: Select all
OraTable.IndexFieldNames := 'JOB;SAL';