I’m using Kohana’s ORM library, and I’m wondering if there is any way to order the results that are generated.
Example:
$priorities = ORM::factory('priority')->select_list('id','label'); //how to order these?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What is
select_list?Btw, ordering in kohana is performed by
order_by()methodMore samples you can find at: http://kerkness.ca/kowiki/doku.php?id=building_complex_select_statements#order_by
Also that wiki contains a lot of usefull articles about kohana: http://kerkness.ca/kowiki/doku.php