Is it possible to get a simple array using find and findFirst? Model::find(array("hydration" => Resultset::HYDRATE_ARRAYS)) seem to return array of objects.
If there is no way currently, would you please implement it?
Also it would be very nice to have shortcut methods for fetching different types of results, much like in PDO.
- a function to get first field from the first row, useful when I select single value from DB
- a function to fetch key => value pairs, with pdo you can achieve this using FETCH_KEY_PAIR, which is very handy sometimes.