RowResult::fetchAll

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

RowResult::fetchAll結果セットから全ての行を取得する

説明

publicmysql_xdevapi\RowResult::fetchAll(): array

結果セットから全ての行を取得します。

パラメータ

この関数にはパラメータはありません。

戻り値

クエリで取得した全ての結果を含む、数値インデックスの配列。 個々の結果は連想配列です。行が存在しない場合は、空の配列が返されます。

例1 mysql_xdevapi\RowResult::fetchAll() の例

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

$session->sql("DROP DATABASE addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$session->sql("CREATE TABLE addressbook.names(name text, age int)")->execute();
$session->sql("INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)")->execute();

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

$row = $table->select('name', 'age')->execute()->fetchAll();

print_r($row);

上の例の出力は、 たとえば以下のようになります。

Array ( [0] => Array ( [name] => John [age] => 42 ) [1] => Array ( [name] => Sam [age] => 33 ) )
To Top