|
SqlStatementResult::fetchOneGet single row Description
public array mysql_xdevapi\SqlStatementResult::fetchOne()
Fetch one row from the result set. Warning
This function is currently not documented; only its argument list is available. ParametersThis function has no parameters. Return ValuesThe result, as an associative array. In case there is not any result, null will be returned. ExamplesExample #1 mysql_xdevapi\SqlStatementResult::fetchOne example The above example will output something similar to:
Array
(
[name] => John
[age] => 42
[job] => bricklayer
)
|