ResultSet
class ResultSet implements Iterator, IRowContainer
Represents a result set.
Methods
No description
No description
No description
No description
No description
No description
No description
Normalizes result row.
Displays complete result set as HTML table for debug purposes.
No description
No description
No description
No description
No description
Fetches single row object.
Fetches single field.
Fetches array of fields.
Fetches all rows as associative array.
Fetches all rows.
Fetches all rows and returns associative tree.
Details
at line 51
__construct(Connection $connection, string $queryString, array $params)
at line 82
Connection
getConnection()
at line 91
PDOStatement
getPdoStatement()
at line 97
string
getQueryString()
at line 103
array
getParameters()
at line 109
int|null
getColumnCount()
at line 115
int|null
getRowCount()
at line 121
float
getTime()
at line 130
array
normalizeRow(array $row)
Normalizes result row.
at line 181
void
dump()
Displays complete result set as HTML table for debug purposes.
at line 190
void
rewind()
at line 198
current()
at line 204
key()
at line 210
void
next()
at line 216
bool
valid()
at line 229
Row|null
fetch()
Fetches single row object.
at line 257
mixed
fetchField($column = 0)
Fetches single field.
at line 270
array|null
fetchFields()
Fetches array of fields.
at line 282
array
fetchPairs(string|int $key = null, string|int $value = null)
Fetches all rows as associative array.
at line 292
array
fetchAll()
Fetches all rows.
at line 305
array
fetchAssoc(string $path)
Fetches all rows and returns associative tree.