The MongoDB\Driver\BulkWriteCommandResult class

(mongodb >=2.1.0)

はじめに

The MongoDB\Driver\BulkWriteCommandResult class encapsulates information about an executed MongoDB\Driver\BulkWriteCommand and is returned by MongoDB\Driver\Manager::executeBulkWriteCommand().

クラス概要

final class MongoDB\Driver\BulkWriteCommandResult {
/* メソッド */
final public function getDeletedCount(): int
final public function getDeleteResults(): ?MongoDB\BSON\Document
final public function getInsertedCount(): int
final public function getInsertResults(): ?MongoDB\BSON\Document
final public function getMatchedCount(): int
final public function getModifiedCount(): int
final public function getUpdateResults(): ?MongoDB\BSON\Document
final public function getUpsertedCount(): int
final public function isAcknowledged(): bool
}

目次

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top