|
PDOStatement::setFetchModeSet the default fetch mode for this statement Description
public bool PDOStatement::setFetchMode(int
$mode )public bool PDOStatement::setFetchMode(int
$mode = PDO::FETCH_COLUMN, int $colno )public bool PDOStatement::setFetchMode(int
$mode = PDO::FETCH_CLASS, string $class , arraynull $constructorArgs = null )public bool PDOStatement::setFetchMode(int
$mode = PDO::FETCH_INTO, object $object )Parameters
Return Values
Returns Examples
Example #1 Setting the fetch mode The following example demonstrates how PDOStatement::setFetchMode changes the default fetch mode for a PDOStatement object.
The above example will output something similar to: apple red 150 banana yellow 250 orange orange 300 kiwi brown 75 lemon yellow 25 pear green 150 |