Hi there,
if the Zend_Db_Table::fetchRow() always return the first row from the result
is correct?

because i want to fetch one row from the result set also by offset,such as
this,

// $table is an object of a class that extends Zend_Db_Table

$select = $table->select()->limit(1, rand(0,100));
$row = $table->fetchRow($select);

but it always return the first row of the result set.

how to solved that?

Best Regards
Jacky

Reply via email to