CollectionRemove::__construct

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

CollectionRemove::__constructCollectionRemove のコンストラクタ

説明

private mysql_xdevapi\CollectionRemove::__construct()

コレクションのドキュメントを削除します。 Collection::remove() メソッドによってインスタンス化されます。

パラメータ

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

例1 mysql_xdevapi\Collection::remove() の例

<?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");

$collection->add('{"name": "Alfred", "age": 18, "job": "Butler"}')->execute();
$collection->add('{"name": "Bob",    "age": 19, "job": "Painter"}')->execute();

// すべての Painter を削除する
$collection
  
->remove("job in ('Painter')")
  ->
execute();

// もっとも古い Butler を削除する
$collection
  
->remove("job in ('Butler')")
  ->
sort('age desc')
  ->
limit(1)
  ->
execute();

// age が一番若いレコードを削除する
$collection
  
->remove('true')
  ->
sort('age desc')
  ->
limit(1)
  ->
execute();
?>
関連キーワード:  CollectionRemove, xdevapi, construct, パラメータ, remove, Collection, private, メソッド, 削除, ドキュメント