Objects of type Zend_Db_Table_Rowset_Abstract are serializable.
In a similar fashion to serializing an individual Row object, you can serialize a Rowset
and unserialize it later.
Example 319. Serializing a Rowset
Simply use PHP's serialize() function to
create a string containing a byte-stream representation of the Rowset object
argument.
<?php
$bugs = new Bugs();
$rowset = $bugs->fetchAll();
// Convert object to serialized form
$serializedRowset = serialize($rowset);
// Now you can write $serializedRowset to a file, etc.
Example 320. Unserializing a Serialized Rowset
Use PHP's unserialize() function to
restore a string containing a byte-stream representation of an object. The function
returns the original object.
Note that the Rowset object returned is in a disconnected state. You can iterate through the Rowset and read the Row objects and their properties, but you cannot change values in the Rows or execute other methods that require a database connection (for example, queries against related tables).
<?php
$rowsetDisconnected = unserialize($serializedRowset);
// Now you can use object methods and properties, but read-only
$row = $rowsetDisconnected->current();
echo $row->bug_description;
Why do Rowsets unserialize in a disconnected state?
A serialized object is a string that is readable to anyone who possesses it. It could be a security risk to store parameters such as database account and password in plain, unencrypted text in the serialized string. You would not want to store such data to a text file that is not protected, or send it in an email or other medium that is easily read by potential attackers. The reader of the serialized object should not be able to use it to gain access to your database without knowing valid credentials.
You can reactivate a disconnected Rowset using the setTable()
method. The argument to this method is a valid object of type
Zend_Db_Table_Abstract, which you create. Creating a Table object
requires a live connection to the database, so by reassociating the Table with the
Rowset, the Rowset gains access to the database. Subsequently, you can change values in
the Row objects contained in the Rowset and save the changes to the database.
Example 321. Reactivating a Rowset as Live Data
<?php
$rowset = unserialize($serializedRowset);
$bugs = new Bugs();
// Reconnect the rowset to a table, and
// thus to a live database connection
$rowset->setTable($bugs);
$row = $rowset->current();
// Now you can make changes to the row and save them
$row->bug_status = 'FIXED';
$row->save();
Reactivating a Rowset with setTable() also reactivates all the
Row objects contained in that Rowset.




