(No version information available, might only be in Git)
Executable::execute — Execute statement
Execute the statement from either a collection operation or a table query.
此函数没有参数。
A Result object.
Example #1 mysql_xdevapi\Executable::execute() example
<?php
$res = $coll->find()->execute();
$res = $table->select(['age', 'name'])->execute();
?>