il problema non è legato nè a zend nè a php, ma a SQL: per cercare o confrontare stringhe dovresti ad esempio usare l'operatore LIKE opportunamente configurato:
http://dev.mysql.com/doc/refman/5.0/...functions.html
es: se vuoi cercare tutte le stringhe che iniziato i con una determinata stringa dovresti usare qualcosa del tipo:
Codice PHP:
$row = $this->fetchRow("username LIKE '%{$username}' ");