CakeFest 2024: The Official CakePHP Conference

TableSelect::execute

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

TableSelect::executeВыполняет оператор выборки

Описание

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

Выполняет утверждение выборки, связывая его с методом execute().

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Объект RowResult.

Примеры

Пример #1 Пример использования mysql_xdevapi\TableSelect::execute()

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");

$result = $table->select('name','age')
->
where('name like :name and age > :age')
->
bind(['name' => 'John', 'age' => 42])
->
orderBy('age desc')
->
execute();

$row = $result->fetchAll();
?>

Вывод приведённого примера будет похож на:

Array
(
    [0] => Array
        (
            [name] => John
            [age] => 42
        )
)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top