|
PDOStatement::setFetchModeSet the default fetch mode for this statement Description
public bool PDOStatement::setFetchMode
( int
$mode
)
public bool PDOStatement::setFetchMode
( int
$PDO::FETCH_COLUMN
, int $colno
)
public bool PDOStatement::setFetchMode
( int
$PDO::FETCH_CLASS
, string $classname
, array $ctorargs
)
public bool PDOStatement::setFetchMode
( int
$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.
<?php The above example will output: apple red 150 banana yellow 250 orange orange 300 kiwi brown 75 lemon yellow 25 pear green 150 watermelon pink 90 |