mysql_xdevapi\TableSelect
PHP Manual

TableSelect::execute

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

TableSelect::executeExecute select statement

Description

public mysql_xdevapi\RowResult mysql_xdevapi\TableSelect::execute ( void )

Execute the statement.

Parameters

This function has no parameters.

Return Values

A RowResult object.

Examples

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

<?php

$res 
$table->select('name','age')->where('name like \'P%\' or name like\'C%\'')->execute()

?>

mysql_xdevapi\TableSelect
PHP Manual