Unfortunately
I already use my own DB adapter, but when I started to look how
Zend_Auth_Adapter_DbTable returned a result, I started to doubt that
that would work.
The page you linked to mentions the user of
$result = $authAdapter
->authenticate();
echo $result->
getIdentity
() . "\n\n";
However,
looking through the source I see that as an identity,
$authResult['identity'] is returned, which is set to
$this->_identity, which is supposed to be a string (not an object,
so you shouldn't be able to do ->getIdentity() on it). I'm using
Zend Framework 1.0.0, could it be that the reference is outdated?