Is it possible that with the current SQLObject query a DB table and sorting it on different criteria/colums... if so... how would you mimic the following SQL statement:
SELECT emp_id, l_name, title, age from employee_data ORDER BY title DESC, age ASC; Thank you in advance, -- SlashFoo

