mysql_xdevapi\Executable
PHP Manual

Executable::execute

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

Executable::executeExecute statement

说明

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

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();

?>

mysql_xdevapi\Executable
PHP Manual