Compressed Rowset Wiki
Status: Beta
Brought to you by:
lenysoft
....
List sortList = new ArrayList(); //Sort fields list
//1st Sort clause
SortUnit s = new SortUnit("field1", SortUnit.DESC);
//2nd sort clause
SortUnit s1 = new SortUnit(field2", SortUnit.DESC);
//3rd sort clause
SortUnit s2 = new SortUnit("field3", SortUnit.DESC);
//Populate sort list
sortList.add(s);
sortList.add(s1);
sortList.add(s2);
//Sort data
rsSort.beforeFirst();
rsSort.sort(sortList);
...
Anonymous