(No version information available, might only be in Git)
Collection::__construct — Collection のコンストラクタ
コレクションオブジェクトを構築します。
この関数にはパラメータはありません。
例1 mysql_xdevapi\Collection::getOne() の例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$schema = $session->getSchema("addressbook");
$collection = $schema->createCollection("people");
$result = $collection->add('{"name": "Alfred", "age": 42, "job": "Butler"}')->execute();
// ユニークな _id が(デフォルト、そして推奨) MySQL サーバーによって生成されます
// 以下の操作で、生成された _id を取得します。この例ではひとつしかないので、 $ids[0] になります
$ids = $result->getGeneratedIds();
$alfreds_id = $ids[0];
// ...
print_r($alfreds_id);
print_r($collection->getOne($alfreds_id));
?>
上の例の出力は、 たとえば以下のようになります。
00005b6b536100000000000000b1 Array ( [_id] => 00005b6b536100000000000000b1 [age] => 42 [job] => Butler [name] => Alfred )