Zend Framework  1.12
List of all members
Zend_Db_Table_Rowset Class Reference

Additional Inherited Members

- Public Member Functions inherited from Zend_Db_Table_Rowset_Abstract
 __construct (array $config)
 Constructor.
 
 __sleep ()
 Store data, class names, and state in serialized object.
 
 __wakeup ()
 Setup to do on wakeup.
 
 init ()
 Initialize object.
 
 isConnected ()
 Return the connected state of the rowset.
 
 getTable ()
 Returns the table object, or null if this is disconnected rowset.
 
 setTable (Zend_Db_Table_Abstract $table)
 Set the table object, to re-establish a live connection to the database for a Rowset that has been de-serialized.
 
 getTableClass ()
 Query the class name of the Table object for which this Rowset was created.
 
 rewind ()
 Rewind the Iterator to the first element.
 
 current ()
 Return the current element.
 
 key ()
 Return the identifying key of the current element.
 
 next ()
 Move forward to next element.
 
 valid ()
 Check if there is a current element after calls to rewind() or next().
 
 count ()
 Returns the number of elements in the collection.
 
 seek ($position)
 Take the Iterator to position $position Required by interface SeekableIterator.
 
 offsetExists ($offset)
 Check if an offset exists Required by the ArrayAccess implementation.
 
 offsetGet ($offset)
 Get the row for the given offset Required by the ArrayAccess implementation.
 
 offsetSet ($offset, $value)
 Does nothing Required by the ArrayAccess implementation.
 
 offsetUnset ($offset)
 Does nothing Required by the ArrayAccess implementation.
 
 getRow ($position, $seek=false)
 Returns a Zend_Db_Table_Row from a known position into the Iterator.
 
 toArray ()
 Returns all data as an array.
 
- Protected Member Functions inherited from Zend_Db_Table_Rowset_Abstract
 _loadAndReturnRow ($position)
 
- Protected Attributes inherited from Zend_Db_Table_Rowset_Abstract
 $_data = array()
 
 $_table
 
 $_connected = true
 
 $_tableClass
 
 $_rowClass = 'Zend_Db_Table_Row'
 
 $_pointer = 0
 
 $_count
 
 $_rows = array()
 
 $_stored = false
 
 $_readOnly = false