excecute() method always return an "informational" object after use current() method i get an array always.
How can i obtain an object (with objects) to iterate like this, (no ORM):
foreach($obj as $o)
{
echo $o->name;
echo $o->email;
}
Instead of using current, next, etc.