Hi,
this is not a bug, but maybe feature request. It would be cool, if I would able to decide, which fetching mode will be used in results. I would like to get result as instances of object:
foreach ($db->application()->fethmode(PDO::FETCH_CLASS, 'MyApplicationClass') as $application) {
// get all applications as instances of class: "MyApplicationClass"
echo "$application->title\n"; // print application title
}