mysql_xdevapi\Executable
PHP Manual

Executable::execute

(No version information available, might only be in Git)

Executable::executeExecute statement

Description

abstract public mysql_xdevapi\Result mysql_xdevapi\Executable::execute ( void )

Execute the statement from either a collection operation or a table query.

Parameters

This function has no parameters.

Return Values

A Result object.

Examples

Example #1 mysql_xdevapi\Executable::execute() example

<?php

$res 
$coll->find()->execute();
$res $table->select(['age''name'])->execute();

?>

mysql_xdevapi\Executable
PHP Manual