pq\Gateway\Rowset pq\Gateway\Rowset::setRowPrototype(mixed $row)

Set the row prototype.

Params:

Returns:

Example:


<?php

use pq\Gateway as gw;

class 
Account extends gw\Row {
    
// ...
}

$table = new gw\Table("account");
$table->setRowsetPrototype(
    (new 
gw\Rowset($table))->setRowPrototype(new Account($table))
);

?>