CollectionAdd::execute

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

CollectionAdd::executeステートメントを実行する

説明

public mysql_xdevapi\CollectionAdd::execute(): mysql_xdevapi\Result

CRUD操作のリクエストを MySQL サーバに送信するために execute メソッドは必須です。

パラメータ

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

戻り値

影響を受けた行数のような、操作の状態を確認するのに使われる Result オブジェクトを返します。

例1 mysql_xdevapi\CollectionAdd::execute() の例

<?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");
$create $schema->createCollection("people");

$collection $schema->getCollection("people");

// ドキュメントをふたつ追加
$collection
  
->add('{"name": "Fred",  "age": 21, "job": "Construction"}')
  ->
execute();

$collection
  
->add('{"name": "Wilma", "age": 23, "job": "Teacher"}')
  ->
execute();

// 単一のJSONオブジェクトを使い、ドキュメントをふたつ追加
$result $collection
  
->add(
    
'{"name": "Bernie",
      "jobs": [{"title":"Cat Herder","Salary":42000}, {"title":"Father","Salary":0}],
      "hobbies": ["Sports","Making cupcakes"]}'
,
    
'{"name": "Jane",
      "jobs": [{"title":"Scientist","Salary":18000}, {"title":"Mother","Salary":0}],
      "hobbies": ["Walking","Making pies"]}'
)
  ->
execute();

// 最後の add() から生成された ID のリストを取得
$ids $result->getGeneratedIds();
print_r($ids);
?>

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

Array
(
    [0] => 00005b6b53610000000000000056
    [1] => 00005b6b53610000000000000057
)
関連キーワード:  ステートメント, 実行, CollectionAdd, xdevapi, execute, パラメータ, Result, 操作, サーバ, 影響