Collection::removeOne

(没有版本信息可用,可能只存在于 Git 中)

Collection::removeOne删除一个集合文档

说明

public mysql_xdevapi\Collection::removeOne(string $id): mysql_xdevapi\Result

从集合中删除一个具有相应 ID 的文档。这是 Collection.remove("_id = :id").bind("id", id).execute() 的简写。

参数

id

要删除的集合文档的 ID。通常这是 MySQL 服务器在添加记录时生成的 _id。

返回值

一个 Result 对象,可用于查询受影响项目的数量或操作生成的警告数量。

示例

示例 #1 mysql_xdevapi\Collection::removeOne() 示例

<?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": 18, "job": "Butler"}')->execute();

// 通常 _id 是通过其他方式知道的,
// 但在这个例子中,让我们获取生成的 id 并使用它
$ids = $result->getGeneratedIds();
$alfred_id = $ids[0];

$result = $collection->removeOne($alfred_id);

if(!
$result->getAffectedItemsCount()) {
echo
"Alfred with id $alfred_id was not removed.";
} else {
echo
"Goodbye, Alfred, you can take _id $alfred_id with you.";
}
?>

以上示例将输出类似于以下内容

Goodbye, Alfred, you can take _id 00005b6b536100000000000000cb with you.
添加注释

用户贡献注释

此页面没有用户贡献注释。
To Top