object $DB_DataObject->getDatabaseResult (
)
Fetch the pear database result object - so you can use it with things like the Pager or HTML_Select classes
This function can not be called statically.
getting the result object
<?php
$person = new DataObjects_Person;
$person->hair = 'green';
$person->selectAdd();
$person->selectAdd('id,name');
$person->find();
$res= $person->getDatabaseResult();
$quickFormSelect->loadDbResult($res,'id','name');
?>