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

mixed
current()

No description

mixed
key()

No description

void
next()

No description

bool
valid()

No description

Row|null
fetch()

Fetches single row object.

array|null
fetchArray()

No description

mixed
fetchField()

Fetches single field.

array|null
fetchFields()

Fetches array of fields.

array
fetchPairs(string|int|null $key = null, string|int|null $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 40
__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 64
Connection getConnection() deprecated

deprecated

No description

Return Value

Connection

at line 73
PDOStatement|null getPdoStatement()

internal  
 

No description

Return Value

PDOStatement|null

at line 79
string getQueryString()

No description

Return Value

string

at line 85
array getParameters()

No description

Return Value

array

at line 91
int|null getColumnCount()

No description

Return Value

int|null

at line 97
int|null getRowCount()

No description

Return Value

int|null

at line 103
array getColumnTypes()

No description

Return Value

array

at line 113
float getTime()

No description

Return Value

float

at line 120
array normalizeRow(array $row)

internal  
 

No description

Parameters

array $row

Return Value

array

at line 134
void dump()

Displays complete result set as HTML table for debug purposes.

Return Value

void

at line 143
void rewind()

No description

Return Value

void

at line 151
mixed current()

No description

Return Value

mixed

at line 157
mixed key()

No description

Return Value

mixed

at line 163
void next()

No description

Return Value

void

at line 169
bool valid()

No description

Return Value

bool

at line 182
Row|null fetch()

Fetches single row object.

Return Value

Row|null

at line 206
array|null fetchArray()

internal  
 

No description

Return Value

array|null

at line 215
mixed fetchField()

Fetches single field.

Return Value

mixed

at line 225
array|null fetchFields()

Fetches array of fields.

Return Value

array|null

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

Fetches all rows as associative array.

Parameters

string|int|null $key

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

string|int|null $value

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

Return Value

array

at line 247
array fetchAll()

Fetches all rows.

Return Value

array

at line 260
array fetchAssoc(string $path)

Fetches all rows and returns associative tree.

Parameters

string $path

Return Value

array

Traits

Strict class for better experience.