Page 1 of 1

How to make local sort with ODAC

Posted: Fri 28 Jul 2006 14:18
by ozzy
example please Delphi or BCB

Posted: Mon 31 Jul 2006 11:11
by Plash
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:

Code: Select all

OraTable.IndexFieldNames := 'JOB;SAL';
See description of IndexFieldNames property in ODAC help for details.