|
RowResult::__constructRowResult constructor Description
private mysql_xdevapi\RowResult::__construct()
Represents the result set obtained from querying the database. ParametersThis function has no parameters. ExamplesExample #1 mysql_xdevapi\RowResult::__construct example The above example will output something similar to:
Array
(
[0] => Array
(
[name] => John
[age] => 42
)
[1] => Array
(
[name] => Sam
[age] => 33
)
)
|