class ResultSet implements Iterator, IRowContainer

Represents a result set.

Methods

__construct(Connection $connection, string $queryString, array $params, callable|null $normalizer = null)

No description

getConnection() deprecated

No description

PDOStatement|null
getPdoStatement()

No description

string
getQueryString()

No description

array
getParameters()

No description

int|null
getColumnCount()

No description

int|null
getRowCount()

No description

array
getColumnTypes()

No description

float
getTime()

No description

array
normalizeRow(array $row)

No description

void
dump()

Displays complete result set as HTML table for debug purposes.

void
rewind()

No description

current()

No description

key()

No description

void
next()

No description

bool
valid()

No description

Row|null
fetch()

Fetches single row object.

mixed
fetchField($column = 0)

Fetches single field.

array|null
fetchFields()

Fetches array of fields.

array
fetchPairs(string|int $key = null, string|int $value = null)

Fetches all rows as associative array.

array
fetchAll()

Fetches all rows.

array
fetchAssoc(string $path)

Fetches all rows and returns associative tree.

Details

at line 54
__construct(Connection $connection, string $queryString, array $params, callable|null $normalizer = null)

No description

Parameters

Connection $connection
string $queryString
array $params
callable|null $normalizer

at line 92
Connection getConnection() deprecated

deprecated

No description

Return Value

Connection

at line 101
PDOStatement|null getPdoStatement()

internal  
 

No description

Return Value

PDOStatement|null

at line 107
string getQueryString()

No description

Return Value

string

at line 113
array getParameters()

No description

Return Value

array

at line 119
int|null getColumnCount()

No description

Return Value

int|null

at line 125
int|null getRowCount()

No description

Return Value

int|null

at line 131
array getColumnTypes()

No description

Return Value

array

at line 141
float getTime()

No description

Return Value

float

at line 148
array normalizeRow(array $row)

internal  
 

No description

Parameters

array $row

Return Value

array

at line 162
void dump()

Displays complete result set as HTML table for debug purposes.

Return Value

void

at line 171
void rewind()

No description

Return Value

void

at line 179
current()

No description

at line 186
key()

No description

at line 193
void next()

No description

Return Value

void

at line 199
bool valid()

No description

Return Value

bool

at line 212
Row|null fetch()

Fetches single row object.

Return Value

Row|null

at line 240
mixed fetchField($column = 0)

Fetches single field.

Parameters

$column

Return Value

mixed

at line 254
array|null fetchFields()

Fetches array of fields.

Return Value

array|null

at line 266
array fetchPairs(string|int $key = null, string|int $value = null)

Fetches all rows as associative array.

Parameters

string|int $key

column name used for an array key or null for numeric index

string|int $value

column name used for an array value or null for the whole row

Return Value

array

at line 276
array fetchAll()

Fetches all rows.

Return Value

array

at line 290
array fetchAssoc(string $path)

Fetches all rows and returns associative tree.

Parameters

string $path

associative descriptor

Return Value

array

Traits

SmartObject