The PDOStatement class
Introduction
Represents a prepared statement and, after the statement is executed, an
associated result set.
Class synopsis
PDOStatement
class PDOStatement
implements
Traversable
{
bool execute
([ array $input_parameters
] )
mixed fetch
([ int $fetch_style
[, int $cursor_orientation
[, int $cursor_offset
]]] )
array fetchAll
([ int $fetch_style
[, int $column_index
[, array $ctor_args
]]] )
mixed fetchObject
([ string $class_name
[, array $ctor_args
]] )
}
Table of Contents
add a note
User Contributed Notes
The PDOStatement class
There are no user contributed notes for this page.
|
|